Powershell to find the list of user accounts which is configured as forwards to specific account

Powershell to find the list of user accounts which is configured as forwards to specific account

 Get-Mailbox -ResultSize unlimited | ?{ $_.ForwardingAddress -like “Display name”} | Select DisplayName,PrimarySmtpAddress

Leave a comment