vote up 0 vote down star
1

I have performed an active directory search and now have a SearchResultCollection of all the users in active directory. I've specified all the properties that the DirectorySearch should load, but I also want to know what OU (distinguished name) each user is in. I know I could figure it out be getting a DirectoryEntry for each user, and look at the distinguished name of the directory entries parent directory entry, but this seems like it would be terribly slow. Is it possible to return the ou distinguished name some other way?

flag

76% accept rate

1 Answer

vote up 1 vote down check

Subtring-after the first comma?

cn=bob, ou=someOU,dc=this,dc=that

would seem to be your goal.

link|flag
That's what I ended up doing. Thanks. – Jeremy Sep 17 at 17:09

Your Answer

Get an OpenID
or

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