I have code that searches for all users in a department:

string Department = "Billing";
DirectorySearcher LdapSearcher = new DirectorySearcher();
LdapSearcher.PropertiesToLoad.Add("displayName");
LdapSearcher.PropertiesToLoad.Add("cn");
LdapSearcher.PropertiesToLoad.Add("department");
LdapSearcher.PropertiesToLoad.Add("title");
LdapSearcher.PropertiesToLoad.Add("memberOf");
LdapSearcher.Filter = string.Format("(&(objectClass=user)(department={0}))", Department);
SearchResultCollection src = LdapSearcher.FindAll();

What would the filter need to look like if I only wanted everyone in the "Manager Read Only" AD Group?

Am I going about this all wrong?

link|improve this question

feedback

4 Answers

up vote 18 down vote accepted

Looking at your search I have a couple of points for you. First, the search uses objectClass (non-indexed) instead of objectCategory (indexed). Huge performance issue with that query. You would most always want to combine the two together depending on what you are trying to retrieve:

(&(objectCategory=person)(objectClass=user)) = All users (no contacts)
(&(objectCategory=person)(objectClass=contact)) = All contacts (no users)
(&(objectCategory=person)) = All users and contacts

As for looking up the users in a group you can enumerate the list of member objects of the specific group. In the member attribute of the group object is the distinguishedName of each user.

This article describes enumerating members of a group...

Don't forget that you may have to handle nested groups of the parent group, as there isn't a default way to handle this with LDAP queries. For that you may need to evaluate if the member object is a group and then get the member attribute for that child group.

Lastly, you should get in the habit of specifying a dns prefix to your query.

Without DNS prefix:

LDAP://ou=ouname,dc=domain,dc=com

With DNS prefix (all three work):

LDAP://servername/ou=ouname,dc=domain,dc=com
LDAP://servername.domain.com/ou=ouname,dc=domain,dc=com
LDAP://domain.com/ou=ouname,dc=domain,dc=com

A single domain won't cause you much issue but when you try and run a search in a multiple domain environment you will get bitten without this addition. Hope this helps move you closer to your goal.

link|improve this answer
That was a very thoughtful reply. – wcm Feb 4 '09 at 22:18
Adding (objectCategory=person) really made the search noticeably faster. Thanks a lot. – wcm Feb 10 '09 at 18:10
feedback

I've always found Howto: (Almost) Everything In Active Directory via C# helps for most AD questions.

link|improve this answer
This is a really comprehensive article but I didn't find this one specifically. That doesn't mean it's not there, just that I couldn't see it. I'm juggling a dozen things right now ... – wcm Feb 4 '09 at 20:50
feedback

If you know the AD path to the group already it would probably be easier to open a DirectoryEntry on that, then do a DirectorySearcher from there.

using (DirectoryEntry de = new DirectoryEntry("LDAP://somedomain/CN=FooBar"))
{
   DirectorySearcher search = new DirectorySearcher(de, ("(objectClass=user)"));
}

There is also a flag on the Searcher for whether to drill down to sub containers, I forget the name off hand.

link|improve this answer
That would be for the AD Group FooBar? (Sorry I'm kinda new to this stuff) – wcm Feb 4 '09 at 21:22
Yes. Everything in AD has a Distinguished Name (its path) msdn.microsoft.com/en-us/library/aa366101(VS.85).aspx – Rob McCready Feb 4 '09 at 23:09
feedback

You can retrieve a list of users from a Security or Distribution Group in domain by using DSget tool - a new tool introduced in Windows 2003. This tool and other related tools ships with Windows 2003 CD.

Let's say you need to gather a list of users (+nested groups) from a domain group. This is bit easy. You can use the following command to accomplish the goal:

dsget group "DN_of_group" -members -expand > userlist.txt

The output will be saved in userlist.txt

This is the sample output saved in userlist.txt

"CN=Shan Dallis,OU=Users,DC=test,DC=local"
"CN=Tapihe C Mdwa,OU=Users,DC=test,DC=local"

and so on...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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