Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Apologies for not knowing the right way to phrase this question.

Given a domain name and an alias, for example CONTOSO\steveh how can I get the friendly display name for that alias? For example, in Outlook email sent to CONTOSO\steveh appears as 'Steve Holt'?

share|improve this question

2 Answers

up vote 5 down vote accepted

If you are using .net 3.5, add references to System.DirectoryServices and System.DirectoryServices.AccountManagement and try this:

        PrincipalContext c = new PrincipalContext(ContextType.Domain,"CONTOSO");
        UserPrincipal principal = UserPrincipal.FindByIdentity(c,"steveh");
        Console.WriteLine(principal.DisplayName);

I can't verify if it works for a domain since I'm running on a standalone machine but it should help you get started.

share|improve this answer
It works fine for domains as well (just tried out your code sample). – Fredrik Mörk Sep 23 '09 at 6:48

You can query ActiveDirectory through LDAP I recommend taking a look at this question which has some basic information. You should be able to get a general direction from there.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.