0 pts.
 Active Directory Group Member listing
How can I quickly get a list of the members of an AD group so I can print them out and/or send the list to managers to find out if they should really be in the group? Thanks in advance for your suggestions.

Software/Hardware used:
ASKED: January 17, 2007  1:53 PM
UPDATED: January 19, 2007  10:07 AM

Answer Wiki:
Hi, Try Javelina's software for Active Directory. I believe this is the package I used a few years back to do the same thing you are asking about. smf
Last Wiki Answer Submitted:  January 18, 2007  7:35 am  by  Smfraser   0 pts.
All Answer Wiki Contributors:  Smfraser   0 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

 

 

Try this tool: AD Inspector from Intrusense
http://www.intrusense.com/software/adinspector/
Nice GUI, filtering, export to CSV

 5,130 pts.

 

Here is a very simple command, what this does is list all users in ADS to a text file then open the file and and go through each user to find all the groups that that individual belongs to. The final output file group.txt will have the information that you requested, of course you will need to be an administrator to use this script.

dsquery user -limit 0 | dsget user -samid > samid.txt
for /f %%A in (samid.txt) do (echo %%A >> group.txt & dsquery user -samid %%A | dsget user -memberof >> group.txt)

 0 pts.