Exchange Server 2010 Message Tracking
Message Tracking is a component of Exchange 2010 and is a feature of the Hub Transport, Edge Transport, and Mail Server role. It’s job is to log e-mail traffic in the organization when messages transverse between mailboxes.
Export Search Log to CSV
1 |
Get-TransportServer | Get-MessageTrackingLog -Sender "sender@epiclau.com" -Recipients "recipient@epiclau.com" -Start "01/29/2017 00:00:00" -End "02/02/2017 00:00:00" -ResultSize Unlimited | Select-Object pscomputername,clientip,clienthostname,ServerIp,ServerHostname,source,eventid,sender,timestamp,@{Name="Recipients";Expression={$_.recipients}},@{Name="RecipientStatus";Expression={$_.recipientstatus}},messagesubject,messageinfo | Export-CSV c:\temp\temp.csv –NoTypeInformation |
Show Full List in PowerShell
1 |
Get-TransportServer | Get-MessageTrackingLog -Sender "sender@epiclau.com" -Recipients "recipient@epiclau.com" -Start "01/29/2017 00:00:00" -End "02/02/2017 00:00:00" -ResultSize Unlimited | FL * |