How to Find MessagintTracking Logs in Exchange

HI,

How to find messagetraking logs for a particular users which he sent email to external domain in Exchange 2010.

Thanks in Advance

July 12th, 2013 5:04am

Hi Hemal,

In Exchange management shell:

get-messagetrackinglog -Sender "e-mail@address.com" -Start "2013-06-01 10:12:00" -End "2013-07-10 22:32:00" -EventId SEND | Where-Object {$_.Recipients -notlike "*@yourdomain.com"} | ft Recipients,Subject,TimeStamp

Something like that your looking for? 

Free Windows Admin Tool Kit Click here and download it now
July 12th, 2013 5:55am

Yes, but i want all email log sent to any of the recipient from his email address. not to specific domain..

July 12th, 2013 7:12am

Since you say it is Exchange 2010, why don't you use delivery reports in ECP?
Free Windows Admin Tool Kit Click here and download it now
July 12th, 2013 8:09am

Sorry for being unclear.

Replace *@yourdomain.com with the domain name of the senders e-mail address.  (Sender is e-mail@address.com,  enter *@address.com)

It then checks the Recipient field and selects all e-mails sent that does not "only" contain e-mail addresses from the same domain as the sender.

(You can also remove -start, -end, -eventid if you want a wider range of results.)

July 12th, 2013 9:28am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics