Counting members of a group

J

Jazza

Hi,
I've got a Global Security group with a couple of hundred
members. I don't know exactly how many, and I want to. I
don't want to count them individually. How can I find
out how many members in a security group?
TIA
 
H

Herb Martin

I've got a Global Security group with a couple of hundred
members. I don't know exactly how many, and I want to. I
don't want to count them individually. How can I find
out how many members in a security group?

If you have the ResKit (showmbrs.exe) then this works:

showmbrs "domain admins" | find /c " "
4

The following comes close (as you get them in three columns and
can count the lines or paste them into a decent text editor with line
numbers):

net groups "Domain Admins"
 
J

Joe Richards [MVP]

adfind -default -f name=groupname member |find /ic "member"

Ex:

F:\Dev\cpp\MemberOf>adfind -default -f name=administrators member |find /i /c "member"

AdFind V01.12.00cpp Joe Richards ([email protected]) May 2003

4

F:\Dev\cpp\MemberOf>


You can get adfind at www.joeware.net on the free win32 tools page.

Note that global groups that are used as primary groups are a bit of an issue because their membership is maintained
differently.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top