Finding Users Who Have Email Forwarding Enabled Using Shell

At times we run into a situation where we need to find out who all have email forwarding enabled and to which address. It is easy to complete this task using the Exchange Shell. Run the following command.

Get-Mailbox | Where-Object { $_.ForwardingAddress –ne $null } | Select Name, ForwardingAddress