A user account identifies a single user, such as an employee. Windows has the following types of user accounts:
Type | Description |
Local | A local user account is created and stored on a local system and is not distributed to any other system.
|
Domain | A domain user account is created and centrally managed through Active Directory.
|
Active Directory uses the following name types to recognize each object:
Type | Description |
User or Logon Name | The user or logon name is the name of the user account. It is typically a combination of the given name (first name) and surname (last name) of the user. For example, Andy Waters may have the following logon name, awaters.
|
User Principal Name (UPN) | The User Principal Name (UPN) combines the user account name with the DNS domain name. For example, account awaters in the westsim.com domain would have the UPN [email protected].
|
Distinguished names | Distinguished names are the way the Active Directory refers to objects. The distinguished name identifies the full path to an object, including the object name and all parent objects to the root of the domain. The following identifiers are used in a distinguished name:
Each component of the path is separated by a comma. Following is the distinguished name of a computer named Client1, in the OU named Desktops, in the OU named Sales in Northsim.com.
If the object is in a container, the name contains the container name, identified as CN=, in addition to the common name. For example, a user named awaters, in the Users container, in the northsim.com domain, has the distinguished name:
Keep in mind the following about distinguished names:
|
Relative Distinguished Name (RDN) | The Relative Distinguished Name (RDN) is used to identify the object within its container. The RDN needs to be unique only within the object’s container. In the example above, the RDN is CN=awaters. |