Skip to content

How to Transfer or Seize FSMO Roles in Active Directory

Learn the 5 FSMO roles, when to transfer them gracefully vs seize them after a DC failure, and how to do both with ntdsutil and PowerShell — safely.

MGMCSA Guru Team June 2, 2026 10 min read
Diagram-style cover showing the five FSMO roles split across forest-wide and domain-wide scopes, with arrows for transfer and seize between two domain controllers

Active Directory is built around multi-master replication — any domain controller can accept a change and replicate it out. That works beautifully for most operations, but a handful of jobs would break if two DCs tried to do them at the same time. Those jobs are handed to a single DC through what Microsoft calls Flexible Single Master Operations, or FSMO roles.

Most of the time you never think about them. They sit quietly on whichever DC happened to hold them, and the domain runs fine. The moment they matter is when you’re decommissioning a DC, recovering from a dead one, or troubleshooting why password changes suddenly stopped working.

This guide covers all five roles, how to move them cleanly when both DCs are up (transfer), and how to force the move when the holder is gone for good (seize) — plus the one rule that, if you break it, will ruin your weekend.

The five FSMO roles and what they do

There are five roles, split across two scopes. Two are forest-wide (one per forest) and three are domain-wide (one set per domain). In a single-domain forest you have all five on one or two DCs; in a multi-domain forest you’ll have the two forest roles once and the three domain roles repeated in each domain.

The five FSMO roles

Schema Master Forest-wide. The only DC that can modify the AD schema (e.g. an Exchange or Entra Connect schema extension).
Domain Naming Master Forest-wide. Controls adding and removing domains and application partitions in the forest.
RID Master Domain-wide. Hands out blocks of relative IDs (RIDs) to every DC so new SIDs are always unique.
PDC Emulator Domain-wide. Authoritative time source, processes password changes, lockouts, and is the default target for GPO edits.
Infrastructure Master Domain-wide. Keeps cross-domain object references (group memberships) up to date in multi-domain forests.

A couple of these deserve extra attention because they’re the ones you’ll feel if they go missing.

The PDC Emulator is the busiest. It’s the root of the domain’s time hierarchy, it’s where recent password changes are checked before an account is rejected, and it’s the DC the Group Policy editor connects to by default. Lose it and users start getting failed logons after password resets, time drifts, and admins trip over GPO edit conflicts.

The RID Master is quieter but important over time. Every DC gets a pool of RIDs to build new security principals. If the RID Master is down long enough for a DC to exhaust its pool, that DC can’t create new users, groups, or computers until it gets a fresh block.

First, find out who holds the roles

Before you move anything, confirm where the roles currently live. From any domain-joined machine with the AD tools:

netdom query fsmo

Or in PowerShell, which splits forest and domain roles cleanly:

Get-ADForest | Format-List SchemaMaster, DomainNamingMaster
Get-ADDomain | Format-List PDCEmulator, RIDMaster, InfrastructureMaster

Write down the results. If you’re recovering from a failure, this tells you exactly which roles are orphaned and need to move.

Transfer vs seize: pick the right one

This is the decision that matters most, so be clear about it before you touch anything.

A transfer is a graceful, agreed handoff. Both the current holder and the target DC are online and talking to each other. The role moves cleanly, replication stays consistent, and nothing is lost. This is what you use for planned work: rebalancing roles, or moving them off a DC you’re about to retire.

A seize is a forced takeover. You use it only when the current role holder is permanently dead — failed hardware, a corrupted OS, a DC that will never boot again — and you can’t wait for it to come back. Seizing tells the target DC to assume the role unilaterally, without the old holder’s agreement.

Choosing transfer or seize
flowchart TD
A["FSMO role needs to move"] --> B{"Is the current<br/>holder online<br/>and healthy?"}
B -->|Yes| C["TRANSFER<br/>graceful handoff"]
B -->|"No, but it can be fixed"| D["Fix it, then transfer"]
B -->|"No, gone for good"| E["SEIZE<br/>forced takeover"]
E --> F["Never reconnect<br/>the old DC"]
If the current holder can come online, always transfer. Seize only when it's gone for good.

How to transfer FSMO roles (the graceful way)

You have two clean options: PowerShell or the GUI. PowerShell is faster and scriptable, so it’s the one most admins reach for now.

Transfer with PowerShell

Move-ADDirectoryServerOperationMasterRole handles transfers. Point it at the target DC (the one that should receive the roles) and list the roles you want to move:

# Move all five roles to DC02
Move-ADDirectoryServerOperationMasterRole `
  -Identity "DC02" `
  -OperationMasterRole SchemaMaster, DomainNamingMaster, RIDMaster, PDCEmulator, InfrastructureMaster

You can also use the role index numbers (0 = PDCEmulator, 1 = RIDMaster, 2 = InfrastructureMaster, 3 = SchemaMaster, 4 = DomainNamingMaster) if you prefer:

Move-ADDirectoryServerOperationMasterRole -Identity "DC02" -OperationMasterRole 0,1,2,3,4

It’ll prompt for confirmation per role. When it returns without error, run netdom query fsmo again to confirm the move stuck.

Transfer with the GUI

If you’d rather click through it, the roles are split across three consoles:

  • Active Directory Users and Computers → right-click the domain → Operations Masters covers RID, PDC, and Infrastructure.
  • Active Directory Domains and Trusts → right-click the root → Operations Master for the Domain Naming Master.
  • Active Directory Schema snap-in (you may need to register it with regsvr32 schmmgmt.dll) for the Schema Master.

In each console you first point the snap-in at the DC you want to receive the role, then click Change. It’s the same operation as PowerShell, just slower.

Before transferring roles

  • Confirm current role holders with netdom query fsmo
  • Verify replication is healthy first (repadmin /replsummary)
  • Make sure the target DC is a Global Catalog if it needs to be
  • Pick a low-traffic window for the PDC Emulator move (time + auth impact)
  • Re-check role placement after the move

How to seize FSMO roles (after a DC has died)

When the role holder is truly gone, you seize. The classic tool is ntdsutil, and PowerShell can do it too with the same Move- cmdlet plus a -Force flag.

Before you seize anything, be honest about the state of the dead DC. Seizing assumes it will never come back.

Seize with PowerShell

The same cmdlet seizes when you add -Force and the current holder is unreachable:

# Seize all roles onto DC02 because the old holder (DC01) is dead
Move-ADDirectoryServerOperationMasterRole `
  -Identity "DC02" `
  -OperationMasterRole SchemaMaster, DomainNamingMaster, RIDMaster, PDCEmulator, InfrastructureMaster `
  -Force

PowerShell will attempt a graceful transfer first and only seize if the holder can’t be reached, which is exactly the behavior you want.

Seize with ntdsutil

ntdsutil is the traditional method and still works on every supported server version. Run it elevated on the DC that should take the roles:

ntdsutil
  roles
  connections
    connect to server DC02
    quit
  seize schema master
  seize naming master
  seize RID master
  seize PDC
  seize infrastructure master
  quit
quit

For each seize command, ntdsutil first tries a graceful transfer, then falls back to a forced seizure if the old holder is unreachable. Confirm each prompt. When you’re done, verify with netdom query fsmo.

After a seizure, there’s cleanup to do. The dead DC’s metadata is still in the directory and has to be removed before you can reuse its name or fully trust your topology.

After seizing roles

  • Confirm new role holders (netdom query fsmo)
  • Run metadata cleanup to remove the dead DC's object
  • Remove stale DNS records (A, CNAME/_msdcs, SRV) for the old DC
  • Delete the old DC's computer object and NTDS Settings if still present
  • If it held RID Master, watch for RID pool issues on other DCs
  • Never reconnect the old DC — wipe it instead

The metadata cleanup and DNS scrubbing steps are the same ones you’d run when retiring any DC. We cover them in detail in how to decommission an old domain controller safely, which is worth reading alongside this if you’re cleaning up after a failure.

Where should the roles live?

There’s no single correct layout, but a few sensible defaults hold up well:

  • In a single-domain forest, keeping all five roles on one healthy, well-resourced DC is perfectly fine and easy to reason about. Just make sure you have a second DC ready to take over.
  • Keep the PDC Emulator on a reliable, well-connected DC, ideally in your primary site, since it carries time and authentication load.
  • In multi-domain forests, mind the Infrastructure Master / Global Catalog rule from earlier.
  • Document where the roles are. The worst time to figure out your FSMO layout is in the middle of an outage.

Quick reference: which tool for which job

Check role holders netdom query fsmo / Get-ADForest, Get-ADDomain
Graceful transfer Move-ADDirectoryServerOperationMasterRole (no -Force)
Forced seizure Move-... -Force / ntdsutil roles → seize
Cleanup after seizure ntdsutil metadata cleanup + DNS record removal

Wrapping up

FSMO roles aren’t complicated once you separate the two scenarios. For planned work — rebalancing or retiring a DC — you transfer, both DCs agree, and nothing is at risk. For a dead role holder that’s never coming back, you seize, then you clean up the metadata and you keep that old DC off the network forever.

If you remember one thing, make it that last point: a seized DC that comes back online is the fastest way to turn a recoverable failure into a directory mess. Default to transfer, seize only when you must, and document where your roles live before you ever need to move them.

Frequently asked questions

What are the five FSMO roles in Active Directory?

Two are forest-wide: Schema Master and Domain Naming Master. Three are domain-wide and exist once per domain: RID Master, PDC Emulator, and Infrastructure Master. Together they handle operations that don't work well with multi-master replication.

What's the difference between transferring and seizing a FSMO role?

A transfer is a graceful handoff between two online domain controllers — both DCs agree and the role moves cleanly. A seize is a forced takeover used when the role holder is permanently dead and can never come back. Always transfer if both DCs are reachable.

Can I bring a domain controller back online after I seized its roles?

No. Once you seize a role from a DC, that DC must never rejoin the domain. Wipe it, do a forced demotion offline, or keep it permanently disconnected. Reintroducing it causes duplicate role holders and directory corruption.

Which FSMO role matters most if it goes down?

The PDC Emulator. It handles time sync, password changes, account lockouts, and Group Policy edits, so its absence is felt almost immediately. The Schema and Domain Naming masters are rarely needed day to day, so a short outage often goes unnoticed.

How do I check which DC holds the FSMO roles?

Run netdom query fsmo from any domain-joined machine, or Get-ADDomain and Get-ADForest in PowerShell. Both list the current role holders so you know your starting point before any transfer or seizure.

Do I need to seize roles if I'm just rebooting a DC for patching?

No. A planned reboot or short maintenance window doesn't require moving roles — the directory tolerates brief absences fine. Only transfer roles for planned decommissioning, and only seize when a role holder is gone for good.

Sources & further reading

Official vendor documentation referenced while writing this guide.

MG

MCSA Guru Team

IT & Systems Administration

We are working IT pros and system administrators who spend our days in Windows Server, Microsoft 365, and the wider Microsoft stack. MCSA Guru is where we write down the fixes and walkthroughs we wish we had found the first time.

MCSA Guru provides independent, educational IT guidance. Microsoft, Windows, Windows Server, Microsoft 365, Exchange, and Microsoft Teams are trademarks of Microsoft Corporation; Docker is a trademark of Docker, Inc. MCSA Guru is not affiliated with or endorsed by Microsoft or Docker. Always test changes in a safe environment before applying them in production.

Related guides

Fixing something right now?

Jump straight into the guide library or search for the exact error or task you are dealing with.