Search Exchange Message Tracking Logs with a wildcard
January 2, 2015 · by dave.webb · in Exchange 2010, Exchange 2013, PowerShell Commands, Tips and Tricks
When using the Get-MessageTrackingLog cmdlet you can’t use wildcards with the Sender or Recipient parameters. Instead, I pipe the output of Get-MessageTrackingLog to Where-Object: Where-Object {$_.Recipients -Like *@gmail.com} The following PowerShell command will return all results from a server named…