vote up 1 vote down star

I have a set of 10 AD groups. What I'd like is to programmatically find out which users in the AD domain are NOT members of those 10 groups. There is only one domain. I know it's possible to perform ADO SQL queries in a vbscript but I was wondering (hoping, praying) if someone had a canned script?

I suppose a hacky way might be:

  1. Dump all users from the 10 groups
  2. Dump all users from the domain
  3. Run a windiff on the 2 dumps

Any ideas?

flag

just realised windiff wouldn't work because the two dumps aren't necessarily in the same format and might have blank lines in various places. God I wish I was using Unix. – 20th Century Boy May 5 at 3:00

2 Answers

vote up 1 vote down

System.DirectoryServices provides the ability to write LDAP queries. something like this: (&(objectclass=User)(!memberof=cn=group1,...)(!memberof=cn=group2,...)(!memberof=cn=group3,...))

Each memberof condition has to be explicitly spelled out, I believe.

I am just answering quickly, so I don't have 100% of the code to show you.

link|flag
Negated values need to be enclosed in parenthesis i.e. (&(objectclass=User)(!(memberof=cn=group1,...))(!(memberof=cn=group2,...))(!(memberof=cn=group3,...))) - see ietf.org/rfc/rfc2254.txt for more information. – grantc May 5 at 8:06
vote up 1 vote down check

For anyone interested, this worked:

(&(objectCategory=Person)
    (&
        (!memberOf=CN=group1,dc=company,dc=local)
        (!memberOf=CN=group2,dc=company,dc=local)
        (!memberOf=CN=group3,dc=company,dc=local)
    )
)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.