Importing Distributiongroups
HI, Iwouldliketo import a Distributiongroup csv file into excange 2007, but not sure of the command. I have tried a few commands but no luck so far.any ideas ?thanks..
July 10th, 2009 3:30pm
I hope the below Article would help you http://msexchangeteam.com/archive/2006/09/18/428950.aspx
Vinod
|CCNA|MCSE 2003 +Messaging|MCTS|ITIL V3|
Free Windows Admin Tool Kit Click here and download it now
July 10th, 2009 5:24pm
hi
You want to import distribution group file, For that use this command
import-csv "file path"
means if i have the file path "d:\Saibi\DistGroup.csv"
then just write command in powershell
import-csvd:\Saibi\DistGroup.csv
it will work INSHALLAH
After applying this command
Reply me is it working or not?
Regards
Sohaib Qazi
July 11th, 2009 9:30am
is that command work?
Free Windows Admin Tool Kit Click here and download it now
July 11th, 2009 10:44am
You want to import the Distribution Group (DG) in order to mail-enable them in bulk, am I understand it correctly?
Step 1: Export the value of the DG that you want to mail-enable
Csvde -r objectclass=group -d "OU=ExTeam,DC=contoso,DC=com" -l "DN" -f C:\member.txt
Notes: Please make sure that the groups you want to mail-enable are universal group, which is the only group type we can mail-enable
Step 2: Import the file
Import-csv C:\member.txt | foreach {Enable-DistributionGroup - Identity $_.DN}
Step 3: Verify the result via EMC or EMS
July 13th, 2009 5:30am
Hi thanks those commands worked perfect. Thanks................
Free Windows Admin Tool Kit Click here and download it now
July 14th, 2009 1:10pm
Glad it worked for you :)
July 14th, 2009 1:18pm