Finding a User in Active Directory with the Login Name - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T19:31:27Z http://stackoverflow.com/feeds/question/161398 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/161398/finding-a-user-in-active-directory-with-the-login-name 2 Finding a User in Active Directory with the Login Name Michael Stum 2008-10-02T08:46:09Z 2009-03-10T03:39:32Z <p>I'm possibly just stupid, but I'm trying to find a user in Active Directory from C#, using the Login name ("domain\user").</p> <p>My "Skeleton" AD Search Functionality looks like this usually:</p> <pre><code>de = new DirectoryEntry(string.Format("LDAP://{0}", ADSearchBase), null, null, AuthenticationTypes.Secure); ds = new DirectorySearcher(de); ds.SearchScope = SearchScope.Subtree; ds.PropertiesToLoad.Add("directReports"); ds.PageSize = 10; ds.ServerPageTimeLimit = TimeSpan.FromSeconds(2); SearchResult sr = ds.FindOne(); </code></pre> <p>Now, that works if I have the full DN of the user (ADSearchBase usually points to the "Our Users" OU in Active Directory), but I simply have no idea how to look for a user based on the "domain\user" syntax.</p> <p>Any Pointers?</p> http://stackoverflow.com/questions/161398/finding-a-user-in-active-directory-with-the-login-name/161719#161719 6 Answer by Joe for Finding a User in Active Directory with the Login Name Joe 2008-10-02T10:44:17Z 2008-10-03T10:00:32Z <p>You need to set a filter (DirectorySearcher.Filter) something like:</p> <p>"(&amp;(objectCategory=person)(objectClass=user)(sAMAccountName={0}))"</p> <p>Note that you only specify the username (without the domain) for the property sAMAccountName. To search for domain\user, first locate the naming context for the required domain, then search there for sAMAccountName. </p> <p>By the way, when building LDAP query strings using String.Format, you should generally be careful to escape any special characters. It probably isn't necessary for an account name, but could be if you're searching by other properties such as the user's first (givenName property) or last (sn property) name. I have a utility method EscapeFilterLiteral to do this: you build your string like this:</p> <pre><code>String.Format("(&amp;(objectCategory=person)(objectClass=user)(sn={0}))", EscapeFilterLiteral(lastName, false)); </code></pre> <p>where EscapeFilterLiteral is implemented as follows:</p> <pre><code>public static string EscapeFilterLiteral(string literal, bool escapeWildcards) { if (literal == null) throw new ArgumentNullException("literal"); literal = literal.Replace("\\", "\\5c"); literal = literal.Replace("(", "\\28"); literal = literal.Replace(")", "\\29"); literal = literal.Replace("\0", "\\00"); literal = literal.Replace("/", "\\2f"); if (escapeWildcards) literal = literal.Replace("*", "\\2a"); return literal; } </code></pre> <p>This implementation allows you treat the * character as part of the literal (escapeWildcard = true) or as a wildcard character (escapeWildcard = false).</p> <p>UPDATE: This is nothing to do with your question, but the example you posted does not call Dispose on the disposable objects it uses. Like all disposable objects these objects (DirectoryEntry, DirectorySearcher, SearchResultCollection) should always be disposed, normally with the using statement. See <a href="http://stackoverflow.com/questions/90652/can-i-get-more-than-1000-records-from-a-directorysearcher-in-aspnet#90668">this post</a> for more info.</p> http://stackoverflow.com/questions/161398/finding-a-user-in-active-directory-with-the-login-name/161900#161900 0 Answer by Michael Stum for Finding a User in Active Directory with the Login Name Michael Stum 2008-10-02T11:57:04Z 2008-10-02T18:04:58Z <p>Thanks. I figured that i can get the Domain (at least in my AD) through specifying "LDAP://{0}.somedomain.com/DC={0},DC=somedomain,DC=com", replacing {0} with the domain, which works in our my environment at least.</p> <p>One question though: sAMAccountName seems depreciated: <a href="http://msdn.microsoft.com/en-us/library/ms679635%28VS.85%29.aspx" rel="nofollow">The logon name used to support clients and servers running older versions of the operating system, such as Windows NT 4.0, Windows 95, Windows 98, and LAN Manager. This attribute must be less than 20 characters to support older clients.</a></p> <p>Is this still the best approach to it? Or is there a more "modern" field to query? (Windows 2003 Active Directory, Windows XP or 2003 Clients, .net 3.0)</p> <p><strong>Edit:</strong> Thanks again. Our structure is a bit complicated: we have a big "domain.com" forest, with several domains for regional offices. Essentially: The Login is "something\username", the full domain us something.domain.com and the mail is user@domain.com (without the something), but the principal name is user@something.domain.com. I will manually "translate" something\username to username@something.domain.com, as this seems to be the most robust way. Especially since I want to keep the Auto-Discovery feature in.</p>