Exchange 2010 find specific email address with Powershell

Looking for a specific email address and want to know if it exists or which users owns that address?

Find it with Exhange Powershell

$searchaddress = read-host "Please enter the email address:"
Get-Recipient -results unlimited | where {$_.emailaddresses -match "$searchaddress"} | select name,emailaddresses,recipienttype

Check Also

Exchange 2010 – Get Mailbox Database Mount status

Do you want to verify / check / see if you Mailbox Database is mounted …

Leave a Reply

Your email address will not be published. Required fields are marked *