If you are performing migration, you probably noticed after introducing Exchange 2010 server you cannot manage certain futures from Exchange 2010 EMC , management console. You most likely aware of Evan Dodds article on MS Exchange team blog in regards to “EmailAddressPolicy” and how to migrate them into E210.
In this article you will only see some pictures but same CMDLETS , so let’s get started. Note you can copy and paste CMDLETS into your EMS to get the work done quickly.
Step-1
Open EMS on the E210 Server and insert fallowing commands by copying and pasting….
Get-EmailAddressPolicy | where {$_.RecipientFilterType –eq “Legacy”} |
Get-EmailAddressPolicy | where {$_.RecipientFilterType –eq “Legacy”} | |
STEP-2
Set-AddressList "All Users" -IncludedRecipients MailboxUsers |
STEP-3
Set-AddressList "All Contacts" -IncludedRecipients MailContacts |
STEP-4
Set-AddressList "Public Folders" -RecipientFilter { RecipientType -eq 'PublicFolder' } |
STEP-5
Set-GlobalAddressList "Default Global Address List" -RecipientFilter {(Alias -ne $null -and (ObjectClass -eq 'user' -or ObjectClass -eq 'contact' -or ObjectClass -eq 'msExchSystemMailbox' -or ObjectClass -eq 'msExchDynamicDistributionList' -or ObjectClass -eq 'group' -or ObjectClass -eq 'publicFolder'))} |
Now you can open and edit all from EMC from GUI with no problems
Respectfully,
Oz Casey, Dedeal
MCITP (EMA), MCITP (SA)
MCSE 2003, M+, S+, MCDST
Security+, Project +, Server +
http://smtp25.blogspot.com/ (Blog
http://telnet25.spaces.live.com/ (Blog)
http://telnet25.wordpress.com/ (Blog)

1 comment:
Thank you, very nicely summarized.
Post a Comment