Track message logs for a user

Track message logs for a user

Step 1. Determine user's mailbox server
 
run the following scripts from Exchange powershell
 
For eg, to check the log for the recipients from sendertest@test.com:
 
Get-MessageTrackingLog -server servname -sender test@test.com | ft recipients,subject
 
To Get log from a certain time/date to a specific time/date. you can also change  eventid from send to deliver or fail etc
 
Get-MessageTrackingLog -server srvname -resultsize unlimited -start "9/29/2013 8:00am" -end "10/1/2013 3:00pm" -EventId "send" -Recipients test2@domain.edu