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: Disabling, renaming, and clearing the built-in Domain Administrator account is a defense-in-depth control that is strongly recommended by CIS Benchmarks and DISA STIG, but must be performed with caution to avoid domain lockout.
The built-in Domain Administrator account has been renamed and disabled. A dummy “Administrator” account with no rights has been created.
Mission Element lead ought to request this capability of the business owner prior to execution.
Disabling or renaming the Domain Administrator account prevents attackers from easily identifying or abusing the account during lateral movement.
Microsoft does not recommend full deletion or disablement of the original Administrator account unless carefully coordinated.
dsa.msc
wmic useraccount where name='Administrator' call rename name='NewAdminName'
Operator Note: Choose a non-obvious name to avoid easy detection (e.g. “SysOps-Backup”).
net user Administrator C0mplex_P@ssword /ADD /PASSWORDCHG:NO
Operator Note: Use a complex, randomly generated password.
net user Administrator /active:no
Set-ADUser Administrator -Description ""
Set-ADUser -Identity Administrator -City "" -Clear "" -Company "" -Country "" -Department "" -Description "" -DisplayName "" -Division "" -EmailAddress "" -EmployeeID "" -EmployeeNumber "" -Fax "" -GivenName "" -HomeDirectory "" -HomeDrive "" -HomePage "" -HomePhone "" -Initials "" -LogonWorkstations "" -MobilePhone "" -Office "" -OfficePhone "" -Organization "" -OtherName "" -POBox "" -PostalCode "" -ProfilePath "" -SamAccountName "" -ScriptPath "" -State "" -StreetAddress "" -Surname "" -Title "" -UserPrincipalName "" -Partition "" -Server ""
Operator Note: This minimizes information disclosure for dummy accounts.
# Rename default administrator account
wmic useraccount where name='Administrator' call rename name='IRAdminBackup'
# Create dummy Administrator account
net user Administrator ComplexPass123! /ADD /PASSWORDCHG:NO
# Disable dummy Administrator account
net user Administrator /active:no
# Clear AD attributes (optional step)
Set-ADUser Administrator -Description ""
Tool | Platform | Use Case |
---|---|---|
PowerShell + AD Module | Windows | AD attribute clearing, disable account |
WMIC | Windows | Rename local Administrator |
net user | Windows | Create dummy accounts, disable |
ADUC (dsa.msc) | Windows | Visual/manual verification |
DISA STIGS
CIS Benchmark downloads
Securing AD Administrative Groups and Accounts
Date | Version | Description | Author |
---|---|---|---|
2025-05-02 | 1.9 | Original + enhanced operator flow, PowerShell automation, alternate tooling and recommendations | Leo |