PowerShell Message Tracking in Exchange

  Exchange, Powershell

Ever wanted to track some messages in Exchange ? Here is a neet trick to will help you track messages quickly. A lot more options are available, of course, this is only a small one liner to verify if a user received an email, from someone, on a particular date.

Get-MessageTrackingLog -Sender "my.sender@mydomain.com" -Recipients "my.recepient@mydomain.com" -start "11/13/2014" -end "11/14/2014" | ft -property Sender,Recipients,Messagesubject

 

See all available options on TechNet here !

Do you have a cool example that should be put here ? Leave it in the comments !

 

Leave a comment