Posts

Showing posts with the label AD

Export/Import Active Directory Entries To/From a Domain Controller

Image
We can use the ldifde.exe to import and export Active Directory entries to/from a Domain Controller. Ldifde.exe can be found in c:\windows\system32 folder. If you can’t find it then run the add-ons to install that command line tool. To export the Organizational Units or simply OUs, please execute the following command: ldifde -f exportOu.ldf -s dcdomnp01 -d "dc=MyDomain,dc=Com" -p subtree -r  "(objectCategory=organizationalUnit)" -l "cn,objectclass,ou" To export User Accounts please execute the following command: ldifde -f Exportuser.ldf -s dcdomnp01 -d " dc=MyDomain,dc=Com" -p subtree -r "(&(objectCategory=person) (objectClass=User)(givenname=*))" -l "cn,givenName,objectclass,samAccountName,company,c,co,employeeNumber,givenName,sn,streetAddress,l, st,postalCode,title,costCenter,department,manager," And, to import them into the new domain, please execute the following commands: ldifde -i -f Exp...