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

2 Responses to “Finding Users Who Have Email Forwarding Enabled Using Shell…”

  1. Sych October 5, 2009 at 3:38 pm #

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

    [Reply]

  2. Rajith Jose Enchiparambil October 7, 2009 at 9:12 am #

    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.

    [Reply]

Leave a Reply:

Gravatar Image