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

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