Tuesday, 6 September 2011

“Upgrade” Distribution Groups After Moving From Exchange 2003 To 2010…

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.

Grayed out tab

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.

Upgrade

That raises the question of whether we need to “upgrade” the distribution groups while moving from Exchange 2003 to 2010. I can’t find any information regarding this in Technet. But, to make it work, we need to “upgrade”.

Another efficient way of upgrading the distribution group is to use PowerShell. Run the command below to upgrade.

Set-DistributionGroup –identity “groupname” –ForceUpgrade

Upgrade DGs forceupgrade

I have a group named “globalgroup” in my lab, don’t get confused with the screenshot. Once the command is run, the “membership approval” tab becomes visible and is “upgraded”.

membership approval tab visible

In order to upgrade all your distribution groups, run the command below.

Get-DistributionGroup –resultsize unlimited | Set-DistributionGroup –ForceUpgrade

Upgrade DGs forceupgrade

Happy “upgrading”…


No comments:

Post a Comment