In many Exchange environments, distribution groups are relied upon heavily and require frequent changes. This recipe will cover the creation of distribution groups and how to add members to groups, which might be useful when performing these tasks interactively in the shell or through automated scripts.
Managing distribution groups
How to do it...
- To create a distribution group, use the New-DistributionGroup cmdlet:
New-DistributionGroup -Name Sales
- Once the group has been created, adding multiple members can be done easily using a one-liner:
Get-Mailbox -OrganizationalUnit Sales | Add-DistributionGroupMember -Identity Sales
- We can also create distribution groups whose memberships are set dynamically: ...