How to get the current user's Active Directory details in C# - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T08:47:18Zhttp://stackoverflow.com/feeds/question/637486http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/637486/how-to-get-the-current-users-active-directory-details-in-c3How to get the current user's Active Directory details in C#Sophia2009-03-12T05:26:37Z2009-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><system.web>
<authentication mode="Windows" />
</system.web>
</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#6375225Answer by Alan for How to get the current user's Active Directory details in C#Alan2009-03-12T05:53:10Z2009-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#6375404Answer by marc_s for How to get the current user's Active Directory details in C#marc_s2009-03-12T06:06:06Z2009-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#10032650Answer by Dmitri Kouminov for How to get the current user's Active Directory details in C#Dmitri Kouminov2009-06-16T18:45:16Z2009-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>