Book Image

Microsoft Exchange Server Powershell Cookbook (Update)

Book Image

Microsoft Exchange Server Powershell Cookbook (Update)

Overview of this book

Table of Contents (21 chapters)
Microsoft Exchange Server PowerShell Cookbook Third Edition
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Converting and upgrading distribution groups


Earlier, when migrating to Exchange 2010 from Exchange 2003, you may be carrying over several mail-enabled, non-universal groups. These groups will still function, but the administration of these objects within the Exchange tools will be limited. In addition, several distribution group features provided by Exchange 2010 or 2013 will not be enabled for a group until it has been upgraded. If, by chance, you haven't upgraded your groups before, it's about time now. That's why this recipe is included in this book. This recipe covers the process of converting and upgrading these groups within the Exchange Management Shell.

How to do it...

Let's see how to convert and upgrade distribution groups using the following steps:

  1. To convert all of your non-universal distribution groups to universal, use the following command:

    Get-DistributionGroup -ResultSize Unlimited `
    -RecipientTypeDetails MailNonUniversalGroup | 
    Set-Group -Universal
    
  2. Once all of your distribution...