Link to home
Start Free TrialLog in
Avatar of padas6
padas6Flag for India

asked on

Bulk Contact & DL creation through Powershell scripts

Hi,
Is there any scripts is there by which we can create bulk DL & contact.

Please suggest.
ASKER CERTIFIED SOLUTION
Avatar of Manpreet SIngh Khatra
Manpreet SIngh Khatra
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
create a .csv file for example book.csv and add this details in it. Name,Firstname,Lastname,Externalemailaddress

then run command Import-Csv book.csv|%{New-MailContact -Name $_.Name -DisplayName $_.Name -ExternalEmailAddress $_.ExternalEmailAddress -FirstName $_.FirstName -LastName $_.LastName}
Avatar of rebelscum
rebelscum

You could also use something like AD Manager Plus. It works real well and has a nice UI for editing everything in Active Directory including a mass import of users from a .csv file.

http://www.manageengine.com/products/ad-manager/index.html
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial