IncidentResponsev2

Create Team Admin Account in Active Directory (AD)

Task Create Team Admin Account in Active Directory

Conditions

Given a target Domain, a Domain Controller (DC), a user account with appropriate rights and privileges to modify user accounts, and a workstation with the Windows Remote Server Administration Tools (RSAT) installed.

Operator Note: Creating a temporary or team admin account is often necessary to secure the environment during incident response. This should only be done with proper approvals and logged actions.

Standards

Operator Note: Always consult enclave or business owner prior to creating privileged accounts during an incident.

End State

New user account is created in Active Directory with Domain Admin credentials that the Team can utilize to carry out protection tasks.


Notes


Manual Steps

Create Active Directory User (GUI Method)

  1. Open Active Directory Users and Computers (ADUC):
    • Click Start → Administrative Tools → Active Directory Users and Computers
    • Navigate to the domain node (example.com)
  2. Right-click the folder or OU where you want to create the user → New → User

  3. Fill out the user creation form:
    • First name, Initials, Last name
    • User logon name (username) → Click Next
  4. Enter password and select appropriate options:
    • Recommended: User must change password at next logon (can be unchecked during IR)
    • Click Next → Click Finish

Assign Group Membership (GUI Method)

  1. Open Active Directory Users and Computers (ADUC)
  2. Navigate to Domain Admins group
  3. Right-click → Properties
  4. Go to Members tab → Click Add
  5. Enter the new user’s username → Click OK → User is now a Domain Admin

PowerShell Method (Preferred for repeatability)

Create new user:

New-ADUser -Name "IR Team Admin" -SamAccountName "iradmin" -AccountPassword (Read-Host -AsSecureString "Enter Password") -Enabled $true -Path "OU=Incident Response,DC=example,DC=com"

Add user to Domain Admins:

Add-ADGroupMember -Identity "Domain Admins" -Members "iradmin"

Operator Note: Replace “OU=Incident Response,DC=example,DC=com” with the correct OU path if needed.


Running Script

New-ADUser -Name "IR Team Admin" -SamAccountName "iradmin" -AccountPassword (Read-Host -AsSecureString "Enter Password") -Enabled $true -Path "OU=Incident Response,DC=example,DC=com"

Add-ADGroupMember -Identity "Domain Admins" -Members "iradmin"

Store these commands securely and remove or disable the account after incident remediation.


Dependencies


Other Available Tools

Tool Platform Use Case
PowerShell AD Module Windows Preferred scripted method
ADUC (dsa.msc) Windows GUI-based user creation
dsadd (legacy) Windows CLI-based user creation (optional)
LAPS / Password Vaulting Tools Windows/Enterprise Secure storage of credentials

Operator Recommendations and Additional Tools

Operator Checklist

Best Practices


References

Create user in Active Directory
Assign Group Membership


Revision History

Date Version Description Author
2025-05-02 1.9 Full original + enriched PowerShell method, operator checklist, alternate tooling and best practices Leo