- Active Directory Administration Cookbook
- Sander Berkouwer
- 217字
- 2021-06-24 14:42:20
Seizing FSMO roles using the ntdsutil command-line tool
To transfer FSMO roles using the ntdsutil.exe command-line tool, follow these steps:
- Open Command Prompt with an account that is a member of the Enterprise Admins group on the domain controller that you intend to seize the FSMO roles from.
- Run the following command to start the NTDS utility in interactive mode:
ntdsutil.exe
- Type the following command in interactive mode to enter the FSMO maintenance context:
roles
- Type the following commands to specify the current domain controller as the server on which to seize the FSMO roles:
connections
connect to server localhost
quit
- Type the following command to seize the Schema Master FSMO role:
seize schema master
- Type the following command to seize the Domain Naming Master FSMO role:
seize naming master
- Type the following command to seize the PDCe FSMO role:
seize PDC
- Type the following command to seize the RID Master FSMO role:
seize RID master
- Type the following command to seize the Infrastructure Master FSMO role:
seize infrastructure master
- Type the following command to exit the FSMO maintenance context:
quit
- Type the following command in interactive mode to exit the NTDS utility:
quit
- Close the Command Prompt window.