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

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

2 Comments

  1. Rajith Jose Enchiparambil says:

    I am not aware of any way to pull that info using exchange powershell cmdlets, as it is a client side setting. Worth trying with WMI and powershell. If I come across anything, I will post it.

  2. Do you know of a way to identify which mailboxes have auto forward rules in them?

Leave a Reply

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