Fetch all users in active directory in a specified folder - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:29:25Z http://stackoverflow.com/feeds/question/793582 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/793582/fetch-all-users-in-active-directory-in-a-specified-folder 0 Fetch all users in active directory in a specified folder KhlavKalash 2009-04-27T13:52:15Z 2009-04-30T21:11:10Z <p>Hi</p> <p>I'm doing an application which needs to query active directory and I've been using ldap queries for that purpose. </p> <p>My problem is that I really cant use "ou=People,dc=pisoftware,dc=com" because the People node name keeps changing because my department name have been changed a lot recently. So in order to avoid the problem of having to do code change each time the name changes then I was wondering if there is any way to query by some sort of a folder id ?</p> <p>For example I could maybe do "ouid=123456,dc=pisoftware,dc=com"</p> http://stackoverflow.com/questions/793582/fetch-all-users-in-active-directory-in-a-specified-folder/793727#793727 2 Answer by mrTomahawk for Fetch all users in active directory in a specified folder mrTomahawk 2009-04-27T14:23:34Z 2009-04-27T14:23:34Z <p>Why can't you do an ldap query which applies a filter to return back only the objectCategory=person. You then could target that query at a search base DN, so that it can still return what you want even if the ou/People nodes get renamed/changed. There is a really good guide to which shows you how to do all this and how the queries work here: <a href="http://www.rlmueller.net/ADOSearchTips.htm" rel="nofollow">http://www.rlmueller.net/ADOSearchTips.htm</a></p> http://stackoverflow.com/questions/793582/fetch-all-users-in-active-directory-in-a-specified-folder/802974#802974 0 Answer by KhlavKalash for Fetch all users in active directory in a specified folder KhlavKalash 2009-04-29T15:43:04Z 2009-04-29T15:43:04Z <p>Hi</p> <p>I've figured this out. I'm using the GUID of the Organizational unit object to fetch the users. See more at <a href="http://khlavkalashcode.blogspot.com/2009/04/find-users-in-active-directory-folder.html" rel="nofollow">my blog</a></p> http://stackoverflow.com/questions/793582/fetch-all-users-in-active-directory-in-a-specified-folder/809100#809100 0 Answer by Doug Seelinger for Fetch all users in active directory in a specified folder Doug Seelinger 2009-04-30T21:11:10Z 2009-04-30T21:11:10Z <p>Another thing you could do would be to move the search up the directory hierarchy far enough to encompass wherever the users may be and do:</p> <p><code>myDirectorySearcher.SearchScope = SearchScope.SubTree;</code></p> <p>which would then do a recursive sub-tree search throughout AD.</p>