to create distribution group
ALL, I need to create mail distribution group with more than 100 email accounts. Is there any easy way to do this... Thanks
September 27th, 2011 6:46pm

On Tue, 27 Sep 2011 15:46:28 +0000, kashif412 wrote: > I need to create mail distribution group with more than 100 email accounts. Is there any easy way to do this... I suppose that depends on your definition of "easy". If you have the names of the members in a file you could use PowerShell and the Add-DistributionGroupMember cmdlet together with a little bit of extra scripting. You'd probably be able to use a search engine and find something someone's already written, too. --- Rich Matheisen MCSE+I, Exchange MVP --- Rich Matheisen MCSE+I, Exchange MVP
Free Windows Admin Tool Kit Click here and download it now
September 28th, 2011 5:50am

Hi, Just give you an example that you can run under powershell. C:\Users.csv | ForEach-Object -Process { Add-DistributionGroupMember -DL groupName -Member $_ } If you use exchange 2007 or 2010 you can use EMS. Import-csv "c:\Users.csv"| foreach {Add-DistributionGroupMember -Identity groupName -Member $_.name} http://technet.microsoft.com/en-us/library/bb124340.aspxPlease remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
September 29th, 2011 5:09am

Hi, Just give you an example that you can run under powershell. C:\Users.csv | ForEach-Object -Process { Add-DistributionGroupMember -DL groupName -Member $_ } If you use exchange 2007 or 2010 you can use EMS. Import-csv "c:\Users.csv"| foreach {Add-DistributionGroupMember -Identity groupName -Member $_.name} http://technet.microsoft.com/en-us/library/bb124340.aspxPlease remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
Free Windows Admin Tool Kit Click here and download it now
September 29th, 2011 5:09am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics