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