Identified an inactive admin account and wondering if it's still needed? Instead of immediately deleting the account, follow a quarantine-based offboarding approach. This involves disabling the account and isolating it in a dedicated quarantine OU while retaining it for review.
Keeping the account in quarantine for a period helps identify hidden dependencies such as applications, scheduled tasks, services, or administrative processes that may still rely on it. If any issues are reported after the account is disabled, you can quickly investigate and restore access if required. This approach helps organizations safely decommission dormant privileged accounts before permanent removal.
Disabling an inactive admin account immediately blocks all sign-in attempts while preserving the account and its associated information.
- Open Active Directory Users and Computers (ADUC).
- Locate the inactive admin account, right-click the account, and select Disable Account.
- A down-arrow icon will appear, indicating that the account has been disabled.
To disable inactive admin accounts using a PowerShell, run the following cmdlet:
Disable-ADAccount -Identity "<User_DistinguishedName>"
Replace <User_DistinguishedName> with the distinguished name of the inactive admin account you want to disable.
After disabling the account, move it to a dedicated quarantine OU. This OU can be configured with restrictive Group Policies to isolate inactive accounts from regular administrative and user environments.
- Open Active Directory Users and Computers and locate the inactive admin account in the respective OU.
- Right-click the disabled admin account and select Move.
- Choose the Quarantine OU (create one if not already available).
- Click OK to complete the move action.
To move inactive admin accounts to a quarantine OU using PowerShell, follow the steps below:
Move-ADObject -Identity "<DistinguishedUserName>" -TargetPath "OU=<OU_DistinguishedName>"
Replace <User_DistinguishedName> with the admin's distinguished name and <OU_DistinguishedName> with the path of the quarantine OU.
Simplify disabling and quarantining inactive admins with AdminDroid!
- With AdminDroid's Active Directory management actions, you can disable and move inactive admin accounts from a single centralized console.
- Simply select the inactive admin accounts, click Disable User to block access, and then use Move User action to relocate them to a designated quarantine OU.