show/hide this revision's text 4 added the filter syntax warning

First off, setting Scope to "subtree" is unnecessary when you already have the DN you are looking for.

Also, how about finding all objects whose "manager" property is the person you look for, then iterating them. This should generally be faster than the other way around.

(&(objectCategory=user)(manager=<user-dn-here>))

EDIT: The following is important but has only been mentioned in the comments to this answer so far:

When the filter string is built as indicated above, there is the risk of breaking it with characters that are valid for a DN, but have special meaning in a filter. These must be escaped:

*   as  \2a
(   as  \28
)   as  \29
\   as  \5c
NUL as  \00
/   as  \2f

// Arbitrary binary data can be represented using the same scheme.

EDIT: Setting the SearchRoot to the DN of the user in question an object, and the SearchScope to "Base" Base also is a fast way to pull a single object out of AD.

show/hide this revision's text 3 rephrased a little

First off, setting Scope to "subtree" is unnecessary when you already have the DN you are looking for.

Also, how about finding all objects whose "manager" property is the person you look for, then iterating them. This should generally be faster than the other way around.

(&(objectCategory=user)(manager=<user-dn-here>))

EDIT: Setting the Search base SearchRoot to the DN of the user in question is and the Scope SearchScope to "Base" also is a fast way to pull a single object out of AD.

show/hide this revision's text 2 added 150 characters in body

First off, setting Scope to "subtree" is unnecessary when you already have the DN you are looking for.

Also, how about finding all objects whose "manager" property is the person you look for, then iterating them. This should generally be faster than the other way around.

(&(objectCategory=user)(manager=<user-dn-here>))

EDIT: Setting the Search base to the DN of the user in question is and the Scope to "Base" also a fast way to pull a single object out of AD.

show/hide this revision's text 1