FSMO - Transfer Seize the roles to a new server
Old School Way: Using Graphical Tools (MMC)
- Check Current Roles: Run
netdom query fsmoon any DC to see who holds them. - Transfer Domain Roles (RID, PDC, Infrastructure):
- Open Active Directory Users and Computers (ADUC).
- Right-click the domain name and select Operations Masters.
- Go to each tab (RID, PDC, Infrastructure) and click Change to move the role to the New DC.
- Transfer Schema Master Role:
- Open MMC, then Add/Remove Snap-in.
- Add Active Directory Schema, then register
schmmgmt.dllfirst if needed (regsvr32 schmmgmt.dll). - Right-click Active Directory Schema and select Operations Master, then Change.
- Transfer Domain Naming Master Role:
- Open Active Directory Domains and Trusts.
- Right-click it and select Operations Master, then click Change to move it to the New DC.
- Check Roles:
(Get-ADDomain).PDCEmulator, (Get-ADDomain).RIDMaster, (Get-ADDomain).InfrastructureMaster(Get-ADForest).DomainNamingMaster, (Get-ADForest).SchemaMaster
New Age: Using PowerShell
- Check Roles:
(Get-ADDomain).PDCEmulator, (Get-ADDomain).RIDMaster, (Get-ADDomain).InfrastructureMaster(Get-ADForest).DomainNamingMaster, (Get-ADForest).SchemaMaster
- Transfer All Roles: Run this command on the destination DC (or any admin machine with AD module).
- Replace
"YourNewDCName"with the actual server name
You can use the following to move the FSMO roles
Move-ADDirectoryServerOperationMasterRole -Identity "YourNewDCName" -OperationMasterRole SchemaMaster, DomainNamingMaster, PDCEmulator, RIDMaster, InfrastructureMaster
Optional: The -Force parameter bypasses some prompts, use carefully
Move-ADDirectoryServerOperationMasterRole -Identity "YourNewDCName" -OperationMasterRole SchemaMaster, DomainNamingMaster, PDCEmulator, RIDMaster, InfrastructureMaster -Force
Important Notes
- Ensure the source DC is online for a clean transfer (Microsoft recommends this)
- Verify Active Directory replication is healthy before starting
- Only seize roles (using
ntdsutilor PowerShell with-Force) if the old DC is permanently offline