Message Tracking with Powershell in Exchange

This is an example of a Message Tracking command that I use most: Get-Messagetrackinglog -ResultSize Unlimited -Recipients:user@contoso.com -EventID “RECEIVE” -Start “09/25/2016 4:30:00 PM” -End “09/30/2016 5:17:00 PM” | select-object eventid,timestamp,messageid,sender,recipients,messagesubject | Out-GridView These are the parts that will improve search results and make it easier for you to understand the results: -ResultSize Unlimited specifies the …