I can never seem to remember the exact syntax on how to transfer the Active Directory FSMO roles and I seem to spend quite a bit of time looking up the commands. So I thought I would write up a quick article on how to transfer those ‘pesky’ FSMO roles.
It is worth noting that you *can* transfer all the FSMO roles using MMC snap-ins. Yes that’s plural snap-ins. You will use a total of no less than three snap-ins to transfer the five roles. I however prefer the use of the command line utility ntdsutil.
- Open a command prompt and start
ntdsutil
- Type
roles
, then pressENTER
- Type
connections
, then pressENTER
- Type
connect to server CORPDC01
, pressENTER
(where CORPDC01 is the target domain controller) - Type
q
, then pressENTER
- Finally you can transfer the roles individually by entering the following commands:
transfer domain naming master
transfer infrastructure master
transfer pdc
transfer rid master
transfer schema master
- When you have finished transferring the roles, type
q
, then pressENTER
until you have exited ntdsutil