G Guest Nov 7, 2005 #1 Is there a program that will look into the Active Directory users Groups and create an exportable list that I can look at in Excel.
Is there a program that will look into the Active Directory users Groups and create an exportable list that I can look at in Excel.
P Paul Bergson Nov 7, 2005 #2 LDIFDE and CSVDE might do the trick for you. http://support.microsoft.com/?kbid=237677 http://www.ss64.com/nt/csvde.html -- Paul Bergson MCT, MCSE, MCSA, CNE, CNA, CCA This posting is provided "AS IS" with no warranties, and confers no rights.
LDIFDE and CSVDE might do the trick for you. http://support.microsoft.com/?kbid=237677 http://www.ss64.com/nt/csvde.html -- Paul Bergson MCT, MCSE, MCSA, CNE, CNA, CCA This posting is provided "AS IS" with no warranties, and confers no rights.
R rwh Nov 7, 2005 #3 This is the ldifde code. Run it in a batch file or from the command line. You'll need the ldifde.exe file. ldifde -f users.txt -d "dc=mydomain,dc=domain,dc=com" -r objectClass=user -f is your output file name -r is the filter type You can get OU specific: example ldifde -f users.txt -d "OU=America,dc=mydomain,dc=domain,dc=com" -r objectClass=user
This is the ldifde code. Run it in a batch file or from the command line. You'll need the ldifde.exe file. ldifde -f users.txt -d "dc=mydomain,dc=domain,dc=com" -r objectClass=user -f is your output file name -r is the filter type You can get OU specific: example ldifde -f users.txt -d "OU=America,dc=mydomain,dc=domain,dc=com" -r objectClass=user