Exchange 2010 – How to add users to a Distribution List

In Exchange 2010 a distribution group (also known as a distribution list) is a list of mail-enabled users which can be used to assign security permissions, roles or send emails.

The following steps detail how to add users to an existing Distribution List.

This can be done by using the Active Directory Users and Computers tool, the Exchange Management Console or the Exchange Management Shell.

How to add users to a Distribution List – Active Directory Users and Computers

You are able to use the Active Directory Users and Computers tool to manage members of a Distribution Group. This is achieved by changing the members list on the Active Directory object.

  1. Open the ‘Users and Computers’ Active Directory tool
  2. Search for the Distribution Group object by right-clicking on the root level and selecting ‘Find’
  3. MSExchange2010-AddToDistributionList1
  4. Once you have located the Distribution Group, double-click on the object
  5. MSExchange2010-AddToDistributionList2
  6. Select the ‘Members’ tab then click on the ‘Add’ button
  7. MSExchange2010-AddToDistributionList3
  8. Enter the names of the new members. If you have multiple users to add separate each name by a ‘;’
  9. Click ‘OK’
  10. MSExchange2010-AddToDistributionList4
  11. Click ‘OK’ to save the changes
  12. MSExchange2010-AddToDistributionList5

How to add users to a Distribution List – Exchange Management Console (EMC)

  1. In the Exchange Management Console, expand the ‘Recipient Configuration’ node, and then select the ‘Distribution Group’ node
  2. MSExchange2010-AddToDistributionList6
  3. Once you have located the Distribution Group, double-click on the object
  4. Select the ‘Members’ tab then click on the ‘Add’ button
  5. MSExchange2010-AddToDistributionList7
  6. Use the ‘Select Recipient’ window to select the new member. If you have multiple members to add you can hold the ‘Ctrl’ key on the keyboard and click on each of the members.
  7. Click ‘OK’
  8. MSExchange2010-AddToDistributionList8
  9. Click ‘OK’ to save the changes
  10. MSExchange2010-AddToDistributionList9

How to add users to a Distribution List – Exchange Management Shell

Using the Exchange Management Shell, you can add new users to a Distribution Group using the ‘Add-DistributionGroupMember’ commandlet.

The following command will:

  • Add ‘Bob Builder’ to the ‘Human Resources’ Distribution Group
Add-DistributionGroupMember -Identity "Human Resources" -Member "Bob Builder"

MSExchange2010-AddToDistributionList10