Automatically update e-mail addresses based on email address policy
Hello, some users (mail user & mail contact ) in my organization do not have the option "Automatically update e-mail addresses based on email address policy" ticked. I would like to know whether I could generate a shell command to know the list of user who do not have the option "Automatically update e-mail addresses based on email address policy" activated (and who has it)
December 2nd, 2009 5:18pm

Hello again, Try below to filter and export them to CSV. Get-MailContact -ResultSize Unlimited | Where {$_.emailaddresspolicyenabled -like "false"} | export-csv c:\temp\PolicyDisabled.csv Get-MailUser for mail users. To Activate them... Get-MailContact -ResultSize Unlimited | Where {$_.emailaddresspolicyenabled -like "false"} | Set-MailContact -emailaddresspolicyenabled:$True Thanks.Vishal Ramnani | MCITP - Exchange 2007 | MCSE Messaging | MCTS - Win 2008 Config
Free Windows Admin Tool Kit Click here and download it now
December 2nd, 2009 5:35pm

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

Other recent topics Other recent topics