When I create a new account in Active Directory, I enter the new user's first name and last name, and it auto-fills the full name in the form "First Last". Can I set AD to use "Last, First" instead? The domain controller is currently Server 2003.
When I create a new account in Active Directory, I enter the new user's first name and last name, and it auto-fills the full name in the form "First Last". Can I set AD to use "Last, First" instead? The domain controller is currently Server 2003.
You'll need to edit the
createDialog
attribute of thedisplaySpecifier
namedCN=user-Display
to alter the default format in ADUC.adsiedit.msc
createDialog
attribute to%<sn>, %<givenName>
This is documented, in more detail, in MS support Article ID: 250455
How to change display names of Active Directory users.
Edit: To answer, possibly, your next question, you can change the existing
displayName
attributes of users with the following Powershell.The LDAP filter will select users with a populated
displayName
, but will exclude users ifdisplayName
contains a comma.