Need export of users in AD Groups

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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
 
Back
Top