I need to find all emails sent to and from a particular domain (abc.org). Does anyone know if I can use wildcard in the following query?
get-mailbox -OrganizationalUnit EMPL | export-mailbox -SubjectKeywords "Keywords"
-ContentKeywords "Keywords" -AllContentKeywords "Keywords" -SenderKeywords "*@abc.org"
-RecipientKeywords "*@abc.org" -StartDate 03/01/11 -EndDate 05/05/2011
-ExcludeFolders "\Contacts", "\Calendar", "\Notes", "\Tasks", "\Junk E-Mail",
"RSS Feeds" -TargetFolder xyz -TargetMailbox xyz
I'm not getting the results I anticipated and cannot find authoritative documentation on it.
Thanks in advance for any help on this.