Any risks of changing master roles of Active Directory?

If your AD replication is working correctly, there is no risk at all; use dcdiag and repadmin to check everything is working correctly before moving a FSMO role, and make sure all DCs are online so that they can properly acknowledge the change.

Also, make sure the server that will hold the PDC Emulator role has correct time settings, because it will become the authoritative time source for the domain.


You'll probably need to manually reconfigure the Windows Time service on the new PDCe and the old PDCe. You can run the commands below in an elevated command prompt on the respective servers to make this change.

New PDCe

net stop w32time

w32tm /unregister

w32tm /register

net start w32time

w32tm.exe /config /manualpeerlist:time.windows.com /syncfromflags:manual /reliable:YES /update

net stop w32time

net start w32time

Old PDCe

net stop w32time

w32tm /unregister

w32tm /register

net start w32time

w32tm /config /syncfromflags:DOMHIER /update

net stop w32time

net start w32time