Adding members to a distribution group from an external file
When working in large or complex environments, performing bulk operations is the key to efficiency. Using PowerShell's core cmdlets such as Get-Content
and Import-CSV
, we can easily import external data into the shell and use this information to perform bulk operations on hundreds or thousands of objects in a matter of seconds. Obviously, this can vastly speed up the time we spend on routine tasks and greatly increase our efficiency. In this recipe, we'll use these concepts to add members to distribution groups in bulk from a text or CSV file using the Exchange Management Shell.
How to do it...
Create a text file called
c:\users.txt
that lists the recipients in your organization that you want to add to a group. Make sure you enter them one line at a time, as shown in the following screenshot:Next, execute the following code to add the list of recipients to a distribution group:
Get-Content c:\temp\users.txt | ForEach-Object { Add...