Hmmm.... I just ran this script on a custom logon script group. It has 5718 members. It enumerates the group, then details all members. It would detail additional groups, but not individuals within those groups.
This is interesting. I might be missing something....I would like to know the scoop on this.
Here is the script Option Explicit Dim sGroup, sDomain, oGroup Dim oMember Dim x
x=0
sDomain = "Your Domain" sGroup = InputBox ("Enter Group Name:"," Enter Group Name ") if sGroup = "" then wscript.echo "You did not enter a Group Name!" wscript.quit end if
Set oGroup = GetObject("WinNT://" & sDomain & "/" & sGroup & ",group")
For Each oMember in oGroup.Members x=x+1 Next wscript.Echo "There are " &x&" users in that group."
-----Original Message-----
A global group is a global group, is a global group, is a global group..
But if your script enumerated the groups within the group to find nested members, then that would be reasonable to find 10,000 -----Original
Message----- After my last response... I hesitate, but... If I'm not mistaken, I read somewhere that the Domain Users group (at least I *think* it was that one) isn't actually a group in the strictest sense of the word.
Correct away... (crossing my fingers ;) T. -----------------------
|
Title: Message
- RE: [ActiveDir] Active Directory Limitatio... AMAN, ALICE L. (JSC-GT4) (NASA)
- Re: [ActiveDir] Active Directory Limi... Eric Yeoh
- RE: [ActiveDir] Active Directory Limi... Hutchins, Mike
- Re: [ActiveDir] Active Directory ... Eric Yeoh
- Re: [ActiveDir] Active Direct... David Adner
- RE: [ActiveDir] Active Directory Limi... Parker, Edward
- RE: [ActiveDir] Active Directory ... T Bowman
- RE: [ActiveDir] Active Directory ... David Adner
- RE: [ActiveDir] Active Directory Limi... Hutchins, Mike
- RE: [ActiveDir] Active Directory Limi... Parker, Edward
- RE: [ActiveDir] Active Directory Limi... Hutchins, Mike
- RE: [ActiveDir] Active Directory Limi... Benton.Wink
- RE: [ActiveDir] Active Directory ... T Bowman
- RE: [ActiveDir] Active Directory ... David Stacer
- Re: [ActiveDir] Active Direct... Eric Yeoh
- RE: [ActiveDir] Active Directory Limi... Hutchins, Mike
- RE: [ActiveDir] Active Directory Limi... Parker, Edward
- RE: [ActiveDir] Active Directory Limi... Tony Yuhas