Auto-Forwarding of Email
Is there a way to run an exchange (powershell) report to show what all staff have their email "auto-forwarded'? Thank you.
January 19th, 2011 4:37pm
On Wed, 19 Jan 2011 21:31:23 +0000, Tuck918 wrote:
>Is there a way to run an exchange (powershell) report to show what all staff have their email "auto-forwarded'? Thank you.
No. Exchange doesn't record that. The "auto-forward" is a rle created
by Outlook. You have to examine the mailbox to find the rule and the
addresses.
See if this helps:
http://gsexdev.blogspot.com/2005/10/reporting-on-forwarding-rules-in.html
---
Rich Matheisen
MCSE+I, Exchange MVP
--- Rich Matheisen MCSE+I, Exchange MVP
Free Windows Admin Tool Kit Click here and download it now
January 19th, 2011 9:08pm
If you are looking for auto-forwarding set on server you could use the command below.
Get-Mailbox -Resultsize unlimited | where {$_.Forwardingaddress -ne $null} | Select displayname,Alias,Forwardingaddress
You can add as many parameters after the select statement
January 20th, 2011 1:59am
Hi Tuck918,
Above gave some good suggestion. Any update for your issue?
Which version of exchange do you use?
If you use exchange 2010, we could use get-inboxrule, some information for you:
http://technet.microsoft.com/en-us/library/dd351062.aspx
If I misunderstand your issue, please tell me.
Regards!
Gavin
TechNet Subscriber Support
in forum
If you have any feedback on our support, please contact
tngfb@microsoft.com
Please remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
Free Windows Admin Tool Kit Click here and download it now
January 20th, 2011 3:12am
Thanks all. We are running exchange 2007. Yeah, these would be rules set in outlook, not on the server (outlook 2007).
January 20th, 2011 8:20am
Then you can use the command given in my last post.
Get-Mailbox -Resultsize unlimited | where {$_.Forwardingaddress -ne $null} | Select displayname,Alias,Forwardingaddress
if that does not serve your purpose, post your requirements exactly.
Free Windows Admin Tool Kit Click here and download it now
January 20th, 2011 9:11am
Ok, thanks. I ran the cmdlet and it showed me a few auto-forwards however, these forwards are made on the exchange server (properties, mail flow settings, delivery options). I am wanting to see who all is setting auto-forward via outlook 2007. Thank you.
January 20th, 2011 9:30am
On Thu, 20 Jan 2011 14:10:32 +0000, Rajitha Chimmani wrote:
>
>
>Then you can use the command given in my last post.
>
>Get-Mailbox -Resultsize unlimited | where {$_.Forwardingaddress -ne $null} | Select displayname,Alias,Forwardingaddress
That won't show you anything about Outlook rules.
---
Rich Matheisen
MCSE+I, Exchange MVP
--- Rich Matheisen MCSE+I, Exchange MVP
Free Windows Admin Tool Kit Click here and download it now
January 20th, 2011 10:51pm
Yeah..My bad...misread it...Thanks Rich
January 21st, 2011 1:28am