How to get the current user's Active Directory details in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T08:47:18Z http://stackoverflow.com/feeds/question/637486 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/637486/how-to-get-the-current-users-active-directory-details-in-c 3 How to get the current user's Active Directory details in C# Sophia 2009-03-12T05:26:37Z 2009-06-16T18:45:16Z <p>I am working on an C# and ASP.Net application, that uses Windows Authentication. </p> <p>i.e. in Web.config:</p> <pre><code>&lt;system.web&gt; &lt;authentication mode="Windows" /&gt; &lt;/system.web&gt; </code></pre> <p>I want to get details for the current user (full name, email address, etc) from Active Directory.</p> <p><hr /></p> <p>I can get their pre Windows 2000 user login name (eg: <code>SOMEDOMAIN\someuser</code>) by using</p> <pre><code>string username = HttpContext.Current.Request.ServerVariables["AUTH_USER"]; </code></pre> <p>I've worked out the LDAP query for the user, using their current login name (not their pre Windows 2000 user login name):</p> <pre><code>DirectorySearcher adSearch = new DirectorySearcher( "(userprincipalname=someuser@somedomain.com.au)"); SearchResult adSearchResult = adSearch.FindOne(); </code></pre> <p>However, I don't know how to either search AD for the user using their pre W2K login name, or get their login name in the 'someuser@somedomain.com.au' format.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/637486/how-to-get-the-current-users-active-directory-details-in-c/637522#637522 5 Answer by Alan for How to get the current user's Active Directory details in C# Alan 2009-03-12T05:53:10Z 2009-03-12T05:53:10Z <p>The "pre Windows 2000" name i.e. DOMAIN\SomeBody is also known as sAMAccountName.</p> <p>So try:</p> <pre><code>DirectorySearcher adSearch = new DirectorySearcher(new DirectoryEntry("LDAP://MyDomainController")); adSearch.Filter = "(sAMAccountName=someuser)"; SearchResult adSearchResult = adSearch.FindOne(); </code></pre> <p>someuser@somedomain.com.au is the UserPrincipalName, but it isn't a required field.</p> http://stackoverflow.com/questions/637486/how-to-get-the-current-users-active-directory-details-in-c/637540#637540 4 Answer by marc_s for How to get the current user's Active Directory details in C# marc_s 2009-03-12T06:06:06Z 2009-03-12T06:06:06Z <p>Alan already gave you the right answer - use the sAMAccountName to filter your user.</p> <p>I would add a recommendation on your use of DirectorySearcher - if you only want one or two pieces of information, add them into the "PropertiesToLoad" collection of the DirectorySearcher.</p> <p>Instead of retrieving the whole big user object and then picking out one or two items, this will just return exactly those bits you need.</p> <p>Sample:</p> <pre><code>adSearch.PropertiesToLoad.Add("sn"); // surname = last name adSearch.PropertiesToLoad.Add("givenName"); // given (or first) name adSearch.PropertiesToLoad.Add("mail"); // e-mail addresse adSearch.PropertiesToLoad.Add("telephoneNumber"); // phone number </code></pre> <p>Those are just the usual AD/LDAP property names you need to specify.</p> <p>Marc</p> http://stackoverflow.com/questions/637486/how-to-get-the-current-users-active-directory-details-in-c/1003265#1003265 0 Answer by Dmitri Kouminov for How to get the current user's Active Directory details in C# Dmitri Kouminov 2009-06-16T18:45:16Z 2009-06-16T18:45:16Z <p>Add reference to COM "Active DS Type Library"</p> <p><hr /></p> <pre><code> Int32 nameTypeNT4 = (int) ActiveDs.ADS_NAME_TYPE_ENUM.ADS_NAME_TYPE_NT4; Int32 nameTypeDN = (int) ActiveDs.ADS_NAME_TYPE_ENUM.ADS_NAME_TYPE_1779; Int32 nameTypeUserPrincipalName = (int) ActiveDs.ADS_NAME_TYPE_ENUM.ADS_NAME_TYPE_USER_PRINCIPAL_NAME; ActiveDs.NameTranslate nameTranslate = new ActiveDs.NameTranslate(); // Convert NT name DOMAIN\User into AD distinguished name // "CN= User\\, Name,OU=IT,OU=All Users,DC=Company,DC=com" nameTranslate.Set(nameTypeNT4, ntUser); String distinguishedName = nameTranslate.Get(nameTypeDN); Console.WriteLine(distinguishedName); // Convert AD distinguished name "CN= User\\, Name,OU=IT,OU=All Users,DC=Company,DC=com" // into NT name DOMAIN\User ntUser = String.Empty; nameTranslate.Set(nameTypeDN, distinguishedName); ntUser = nameTranslate.Get(nameTypeNT4); Console.WriteLine(ntUser); // Convert NT name DOMAIN\User into AD UserPrincipalName Name.User@Company.com nameTranslate.Set(nameTypeNT4, ntUser); String userPrincipalName = nameTranslate.Get(nameTypeUserPrincipalName); Console.WriteLine(userPrincipalName); </code></pre>