EXPERT RESPONSE
You can easily retrieve this information using VBScript, as follows:
Set objGroup = GetObject _
("LDAP://cn=Scientists,ou=R&D,dc=NA,dc=fabrikam,dc=com")
objGroup.GetInfo
arrMemberOf = objGroup.GetEx("member")
WScript.Echo("Group members: " & arrMemberOf.length)
|