View Forward on a mailbox
Hello,I would like to knwo whether from a shell command it is possible to view the current Forward set up for a spcecificmailbox?Thanks to all in advanceGraig
April 16th, 2009 6:38am

Do you mean this? If not, please be more specific... FAQ: Find all users with Forwarding Address is set http://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
April 16th, 2009 7:41am

Sorry for not being clear enough. I meant to say that a userhas a mailbox andhis email adresse is user@domain.com(alias user) that user has a forward already set up to an external address such asuser@yahoo.comI just want to knowwhere I can obtain from the user's alias the forward he's got?E.g the user with the alias user --> has a forward to user@yahoo.comand a local copy (user@domain.com)Am I clear enough??However I run the below command and got all users that have a foward set up -->Get-Mailbox | Where {$_.ForwardingAddress -ne $null} | Select Name, ForwardingAddress, DeliverToMailboxAndForward
April 16th, 2009 8:43am

Here you go... You will get user email address and forwarding address with this one liner.... Get-Mailbox | Where {$_.ForwardingAddress -ne $null} | Select Name, PrimarySMTPAddress, ForwardingAddress, DeliverToMailboxAndForward Or here it gives the user's login id in UserPrincipalName column... Get-Mailbox | Where {$_.ForwardingAddress -ne $null} | Select Name,UserPrincipalName, ForwardingAddress, DeliverToMailboxAndForward Amit Tank | MVP - Exchange | MCITP:EMA MCSA:M | http://ExchangeShare.WordPress.com
Free Windows Admin Tool Kit Click here and download it now
April 16th, 2009 9:20am

I have a similar problem. I have been asked to audit users setting up forwarding in their Outlook client. I know these setting are saved to their mailbox andare different from setting forwarding physcially on the Exchange server but can this be done. I have been looking into client side and server side and testing a few things. Using Powershell and Forwarding Address gives you the Exchange forward version, not the Outlook. Any help would be great...Thanks...
July 15th, 2009 11:38am

Check this vbscript... http://gsexdev.blogspot.com/2005/10/reporting-on-forwarding-rules-in.htmlAmit Tank | MVP Exchange Server | MCITP: EMA | MCSA: M | http://ExchangeShare.WordPress.com
Free Windows Admin Tool Kit Click here and download it now
July 15th, 2009 12:02pm

Get-Mailbox -Identity <mailbox> | Select Name, ForwardingAddress You might also want to check ForwardingSmtpAddress too.
October 11th, 2012 6:22pm

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

Other recent topics Other recent topics