Windows Thread, How to create contacts in AD in Technical; I need to create contacts for all the former students of a college.
I have an excel list of all ...
-
24th August 2010, 10:10 AM #1
- Rep Power
- 0
How to create contacts in AD
I need to create contacts for all the former students of a college.
I have an excel list of all the names. I have tried doing it manually but there are 500 names and I need to use an automated way to do this.
Please assist
-
-
1st September 2010, 02:46 PM #2
- Rep Power
- 0
If you use powershell, you can download free tools from Quest Software (their ActiveRoles addons) that allow you to import CSV files and work with them in Active Directory.
-
-
1st September 2010, 02:50 PM #3
- Rep Power
- 0
Even better... you can do it with the Exchange snapins....
$ou = "<Destination DN>"
$DC = "<FQDN of DC>"
$users = "File location"
import-csv $users | foreach {$last, $first, $mail = $_.last, $_.first, $_.mail new-mailcontact -name "$first $last" -ExternalEmailAddress "$Mail" -DomainController "$DC" -OrganizationalUnit "$OU"}
-
-
1st September 2010, 02:53 PM #4
- Rep Power
- 0
I feel like I am babbling here now, but that is dependant on Exchange 2007 being your system of use... What mail system do you have?
-
SHARE:
Similar Threads
-
By reggiep in forum Windows Server 2008
Replies: 9
Last Post: 27th May 2010, 12:30 PM
-
By RabbieBurns in forum Windows
Replies: 1
Last Post: 11th May 2010, 09:34 AM
-
By speckytecky in forum EduGeek Joomla 1.5 Package
Replies: 2
Last Post: 9th November 2009, 08:19 PM
-
By Japtastic in forum Windows Server 2000/2003
Replies: 2
Last Post: 9th September 2009, 07:43 PM
-
By johnkay21 in forum Windows
Replies: 2
Last Post: 2nd May 2007, 10:11 AM
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules