Tag: Exchange Powershell

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