Automatically update email address based on recipient policy
hi, Automatically update email address based on recipient policy check box has been removed automatically for some of the contacts. exchange 2007 sp1
July 12th, 2010 11:47am

hi, Automatically update email address based on recipient policy check box has been removed automatically for some of the contacts. exchange 2007 sp1 You can turn it on again for all mail contacts like this Get-MailContact |Set-MailContact -EmailAddressPolicyEnabled $true or if your contacts exist in an OU then you can run this command only for contacts in that OU: Get-MailContact -OrganizationalUnit "YourADDomain.com\YourOU" |Set-MailContact -EmailAddressPolicyEnabled $true Or just Turn it ON for those contacts who have this flag off like this: Get-MailContact |Where {$_.EmailAddressPolicyEnabled -eq $false} |Foreach { Set-MailContact $_.Identity -EmailAddressPolicyEnabled $true} Regards, Laeeq Qazi|Team Lead(Exchange + Sharepoint + BES + DynamicsCRM) www.HostingController.com
Free Windows Admin Tool Kit Click here and download it now
July 12th, 2010 12:48pm

Hi Laeeq Qazi| thanku very much. the problem has been resolved. Can you please let me know the RCA for this issue any way thanku very much
July 12th, 2010 4:03pm

Hi Laeeq Qazi| thanku very much. the problem has been resolved. Can you please let me know the RCA for this issue any way thanku very much Hi, I m not sure about root cause, there could be any of the following (just my thought) - some tech admin mistakenly done that - some app on that server caused this - did u migrate mailboxes from some legacy exchange server to ex2007? May be that caused it Regards, Laeeq Qazi|Team Lead(Exchange + Sharepoint + BES + DynamicsCRM) www.HostingController.com
Free Windows Admin Tool Kit Click here and download it now
July 12th, 2010 4:09pm

Hi Avinash, How do you create the contacts? If you use New-MailContact with parameter -PrimarySmtpAddress , the check box will be removed. More information: New-MailContact http://technet.microsoft.com/en-us/library/bb124519(EXCHG.80).aspxFrank Wang
July 13th, 2010 12:40pm

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

Other recent topics Other recent topics