Home Microsoft Exchange Server 2010
Add Users to a Distribution Group from a CSV File (Exchange 2010) Print E-mail

The "Add-DistributionGroupMember" powershell cmdlet is available in Exchange 2010. To do this ensure you can access the CSV file on one of your Exchange 2010 servers and run it on that server. On a normal client desktop "Add-DistributionGroupMember" is not available.

 

 

Check the CSV File Output:

Import-Csv .\StaffForDistGroup.csv


displayname

---------

John Doe

Bob Smith

Andy Barnes

Jane Smith

Tom Jones

Harry Best

Ben Dover

 

 

You can have various fields in the CSV file, its just important somewhere there is a displayname/samid/DN etc so it can be used to add to the group. If you dont have this like I have in the past had first name and last name fields you can just concatenate these to get the full name (which might be your display name?!).

 

 

Add the Users to the Distribution Group based on the "displayname"  field:

Import-Csv .\StaffForDistGroup.csv | ForEach {Add-DistributionGroupMember -Identity "All Staff Payroll" -Member $_.displayname}

 

 

And there you have it, all the users will now have been added to the Distribution Group.

 

 

 

 

        
            

      

 

DISCLAIMER: All advice, tips, guides and other information on this website is provided as-is with no warranty or guarantee. While most information is correct to the best of my knowledge, I am not reponsible for any issues that may arise in using the information, and you do so at your own risk. As always before doing anything; check, double check, test and always make a backup.

 

Help VMadmin

All resources on this site are provided absolutley free. However it takes time and money to keep the site running. If any information has been helpful to you or your company, and you wish to make a donation to help keep VMadmin.co.uk running you can do so via paypal, and it would be much appreciated.

Click to donate to VMadmin.co.uk via paypal.