Posts

Showing posts from February, 2017

Bulk Import of Organizational Units from CSV

#################################################################################### # Bulk Import of Organizational Units from CSV #################################################################################### # Created by Brad Voris # Description: Bulk import of Active Directory OUs via Powershell with a CSV file #################################################################################### # Notes for CSV File # First line of CSV file should contain the following in each cell # NAME,DistinguishedName # #################################################################################### #################################################################################### #Import AD Module RSAT must be installed #################################################################################### Import-Module ActiveDirectory #################################################################################### #Varibale location for CSV file #############...