Tuesday, 14 May 2019

Message Tracking on Exchange 2013 and later

Message Tracking on Exchange 2013 and later

Microsoft in their infinite wisdom have decided to do away with the GUI for this in Exchange 2013. Now it has to be done in the exchange management powershell 

Use the following to search by sender

Get-MessageTrackingLog -resultsize unlimited -Start "05/01/2019" -End "05-10-2019" -Sender scott.sharland@molevalleyfarmers.com | export-csv c:\savefile.csv 
  
Date format is MONTH/DAY/YEAR 
  
Add -server SERVERNAME to change the server you want to search for tracking logs on. The default will be the server you are running the shell on 
  
Change -Sender to -Recipients to look for where mail has been sent to instead of from

No comments:

Post a Comment