NickTheGreek 160 Report post Posted May 31, 2018 " Is it not possible to use wildcards in the Exchange 2007 Message Tracking Assistant? My boss asked me to look for all messages from a particular vendor, and so I put her email address in Recipients, then put *@godaddy.com in the Sender field, and clicked Next. Is this not possible? It seems like a functionality you'd expect to be there - am I just formatting something wrong? " - Nope, both the sender and recipient fields can only be complete smtp addresses, it is not possible to search using wildcards. If you want to do that you will need to search the log files manually using something like notepad++ (which can search multiple files at once which should help!). http://technet.microsoft.com/en-us/library/bb124926%28EXCHG.80%29.aspx - From the Exchange Management Shell, run the following command: Powershell Get-MessageTrackingLog -EventId "RECEIVE" -Start "5/1/2015 12:00:00 AM" -End "5/31/2015 11:59:59 PM" -ResultSize unlimited | where {$_.Sender -like "*@godaddy.com"} This will search everyone's mailbox on your Exchange server for all emails from anyone at GoDaddy.com between May 1, 2015 and May 31, 2015 and display them. You can add specific recipients to your command by specifying -Recipients:username@domain.com anywhere before the pipe ("|"). https://community.spiceworks.com/topic/124477-wildcards-in-exchange-2007-message-tracking Quote Share this post Link to post Share on other sites