Category: Exchange

Exchange Powershell Potpourri

Purpose: The purpose of this article is to display a set of commonly used Exchange Powershell Scripts Get all email sent to aol in the last 12 hours. Helpfull for locating spam or newsletters Get-ExchangeServer | Where-Object {$_.IsMailboxServer -eq $true} | Get-MessageTrackingLog -ResultSize unlimited -Start (Get-Date).AddHours(-12) | Where-Object {$_.recipients -like “*@aol.com”} | Select {$_.Recipients}, * […]

Read More

Exchange ECP and OWA error out after updating to CU 23

Problem After upgrading Exchange to CU23 ECP and OWA no longer work.  After logging in to the splash screen Owa was throwing a 500 error.  ECP was showing “Could not load file or assembly ‘Microsoft.Exchange.Common, Version=15.0.0.0 …”   Resolution Open IIS Manager -> Expand Sites-> Exchange Back End Click ECP.  Open the Application Settings in […]

Read More

Connect to Exchange Online using PowerShell

Exchange Online PowerShell allows you to manage your Exchange Online settings from the command line. You use Windows PowerShell on your local computer to create a remote PowerShell session to Exchange Online. It’s a simple three-step process where you enter your Office 365 credentials, provide the required connection settings, and then import the Exchange Online […]

Read More