Active Directory Account Creation

1 min read

1. 👥 Creating a New User Account #

A User Account is an object in Active Directory that represents a person and is used for authentication and authorization across the domain.

Step-by-Step Process #

  1. Open ADUC: Launch the Active Directory Users and Computers console (dsa.msc).
  2. Locate OU: In the left pane, navigate to and select the Organizational Unit (OU) where you want to place the new user.
  3. Initiate Creation: Right-click the desired OU, point to New, and then click User.
  1. Enter Identification Data:
    • First name: (e.g., Jane)
    • Last name: (e.g., Doe)
    • Full name: (Automatically populated as Jane Doe)
    • User logon name: This is the username used for domain sign-in (e.g., jdoe or jane.doe).
  2. Set Password: Click Next and enter the password twice.
Active Directory Account Creation
  1. Configure Password Options: Select the required password policy options:
    • User must change password at next logon: (Standard security practice)
    • User cannot change password: (Used for service accounts)
    • Password never expires: (Used for service accounts)
    • Account is disabled: (Used for creation, enabled later)
  2. Finalize: Click Next and then Finish.
Active Directory Account Creation

Note: After creation, right-click the user account, select Properties, and navigate to the Member Of tab to add the user to relevant security groups (e.g., Domain Users, Remote Desktop Users, etc.).


2. 🖥️ Creating a New Computer Account #

A Computer Account is an object that represents a client machine or server joined to the domain. This object is automatically created when a machine is successfully joined to the domain, but it can be pre-staged manually.

Step-by-Step Process (Manual Staging) #

  1. Open ADUC: Launch the Active Directory Users and Computers console.
  2. Locate OU: Navigate to and select the target Organizational Unit (OU) where the computer object should reside.
  3. Initiate Creation: Right-click the desired OU, point to New, and then click Computer.
  4. Enter Computer Name: Enter the exact name of the computer as it will appear on the network (e.g., WIN10-JDOE).
  5. Set Delegation (Optional): Click Change to specify which domain users or groups are allowed to join the workstation to the domain using this pre-staged account.
  6. Finalize: Click OK.

Joining the Computer to the Domain (Client Side) #

  1. Access System Properties: On the target client machine, go to System Properties > Computer Name tab.
  1. Change Settings: Click Change and enter the full Domain Name (e.g., example.local).
  2. Authenticate: A window will prompt for credentials. Enter the username and password of an account authorized to join computers to the domain (e.g., jdoe or an Administrator account).
  3. Reboot: After successful authentication, the computer will reboot and be joined to the domain, associating itself with the corresponding computer object in AD.
Active Directory Account Creation
Active Directory Account Creation

Leave a Reply

Your email address will not be published. Required fields are marked *