If you want to search Exchange log for a particular subject, or just a bite of it, you can search witch this commands.
This will also export it to a nice CSV files.
1 |
Get-MessageTrackingLog -resultsize unlimited | Where-object {$_.MessageSubject -like "*Kenneth Dalbjerg"} | select-object timestamp,Sender,@{l="Recipients";e={$_.Recipients -join " "}},messageSubject | export-csv c:\KennethDalbjerg.csv |