Manage/Transfer FSMO roles for my domain LON-DC1.adatum.com. I have promoted a new backup domain controller in my video to transfer the FSMO roles because, later we are going to decom this domain controller
Discover FSMO role holders by using the command "netdom /query fsmo"
I am going to retrieve domain-wide 3 roles first and forest-wide 2 roles by using the following command. You can use these commands again after the completion of the FSMO roles transfer.
Get-ADDomain | Select-Object InfrastructureMaster, PDCEmulator, RIDMaster | Format-List
Get-ADForest | Select-Object DomainNamingMaster, SchemaMaster | Format-List
Move or seize a FSMO role
====
PDCEmulator = 0
RIDMaster = 1
InfrastructureMaster = 2
SchemaMaster or 3
DomainNamingMaster = 4
====
Move-ADDirectoryServerOperationMasterRole -Identity "Lon-SVR1" –OperationMasterRole 0 -Confirm:$false
Move-ADDirectoryServerOperationMasterRole -Identity "Lon-SVR1" –OperationMasterRole 1, 2 -Confirm:$false
Move-ADDirectoryServerOperationMasterRole -Identity "Lon-SVR1" –OperationMasterRole 3, 4 -Confirm:$True
I declined in my video to transfer one role and later acknowledged for learning and training purposes:
Thank You:
Enayat Meer:::::::::::::::::::::::::::::[email protected]:::::::::::::::::::::::::::::::::::::::::::::::
=----------------------