Fetch all users in active directory in a specified folder - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T23:29:25Zhttp://stackoverflow.com/feeds/question/793582http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/793582/fetch-all-users-in-active-directory-in-a-specified-folder0Fetch all users in active directory in a specified folderKhlavKalash2009-04-27T13:52:15Z2009-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#7937272Answer by mrTomahawk for Fetch all users in active directory in a specified foldermrTomahawk2009-04-27T14:23:34Z2009-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#8029740Answer by KhlavKalash for Fetch all users in active directory in a specified folderKhlavKalash2009-04-29T15:43:04Z2009-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#8091000Answer by Doug Seelinger for Fetch all users in active directory in a specified folderDoug Seelinger2009-04-30T21:11:10Z2009-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>