Question

through the UserPrincipal Class I can set the UserPrincipalName and thus when my user is created the first part of the User logon name is populated:

up.UserPrincipalName = "ryan.anthony3"; produces the following result:

enter image description here

however that drop down is empty unless I choose one of the options through the interface

I'd like to set one of the available options programmatically using this UserPrincipal class if possible... is that possible?

I am not seeing a setter for it here: http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.userprincipal%28v=vs.110%29.aspx

No correct solution

OTHER TIPS

UserPrincipalName is what you're looking for.

Use up.UserPrincipalName = "ryan.anthony3@yourDomain.Com";

User Principal Name in Active Directory, looks in the GUI tools, like it has two components, the parts on either side of the @ sign.

But in reality the database stores it as a single string.

The splitting of the two components is just meant as a convenience for administrators only.

When you set the value, you must set the complete value. AD does NOT validate the string you enter, you can in fact enter complete nonsense and it will accept it. (It won't 'work' for useful things, but it will accept it).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top