In Exchange 2010 - I would like to use * (wild card) in a searchquery i know the following script line works
Get-Mailbox -resultsize unlimited | Search-Mailbox -searchquery {Attachment:"servers.txt" AND Subject:"Testing the search capabilities"} -estimateresultonly
Can i use the following? (using wildcards)
Get-Mailbox -resultsize unlimited | Search-Mailbox -searchquery {Attachment:"servers.txt" AND Subject:"*capabili*"} -estimateresultonly
it appears it is searching for * and not as a wild card.
Can a search using wild card be done?