When migrating from Exchange 2003 to Exchange 2010, you have to upgrade the distribution groups to 2010 level.
Here's how;
While co-existing Exchange 2003 with 2010, the “membership approval tab” on the distribution groups property page is all grayed out. You can’t manage any settings in that tab at all. The behaviour is the same for universal and global groups.
If you make any change to the group (like editing the name), the console asks whether you want to upgrade the object and that you no longer will be able to manage it with legacy Exchange tools.
Another efficient way of upgrading the distribution group is to use PowerShell. Run the command below to upgrade.
Set-DistributionGroup –identity “groupname” –ForceUpgrade
Get-DistributionGroup –resultsize unlimited | Set-DistributionGroup –ForceUpgrade
After this some cleanup may be required. Deleting the empty DSG's
$dls= get-distributiongroup -resultsize unlimited
$dls |? {!(get-distributiongroupmember $_)}
When the powershell command returns, it shows the distributiongroups that have no members.
Name DisplayName GroupType PrimarySmtpAddress
---- ----------- --------- ------------------
DSGname DSGDisplayname Global,SecurityEnabled DSGSMTPaddress
---- ----------- --------- ------------------
DSGname DSGDisplayname Global,SecurityEnabled DSGSMTPaddress
No comments:
Post a Comment