How to find all accounts that have a Foward To enabled
Is there any way I can find all accounts that have the Exchange General / Delivery Options /Foward To populated? I know many of our users are fowarding their e-mail to other accounts and I need a list of all these accountsThanks
March 10th, 2009 8:34pm

Sure, I belive you could do a get-mailbox for all users where 'ForwardingAddress" -neq to "". That should return all mailboxes where the foward to option is not blank. This command should work.Get-Mailbox -Server 'YourMailboxServer' | Where {$_.ForwardingAddress -ne $null} | Select DisplayNameYou can add any additional fields you want outputted to your select statement. Nick Cozby
Free Windows Admin Tool Kit Click here and download it now
March 10th, 2009 10:01pm

I should have put it out there, I have Exchange 2003. Those commands are for 2007 only right?
March 11th, 2009 3:05am

I wrote an article which should help you...!!FAQ: Find all users with Forwarding Address issethttp://exchangeshare.wordpress.com/2008/05/26/faq-find-all-users-with-forwarding-address-is-set/Amit Tank | MVP - Exchange | MCITP:EMA MCSA:M | http://ExchangeShare.WordPress.com
Free Windows Admin Tool Kit Click here and download it now
March 11th, 2009 3:43am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics