Finding the Operations Master Role Holders
This topic explains how to use the Active Directory module for Windows PowerShell to find the operations master (also known as flexible single master operations or FSMO) role holders.
Example
The following example demonstrates how to find the operations master role holders for the Fabrikam.com forest or Fabrikam.com domain:
Get-ADForest Fabrikam.com | FT SchemaMaster,DomainNamingMaster
or:
Get-ADDomain Fabrikam.com | FT PDCEmulator,RIDMaster,InfrastructureMaster
Get-ADForest Fabrikam.com | FT SchemaMaster,DomainNamingMaster
or:
Get-ADDomain Fabrikam.com | FT PDCEmulator,RIDMaster,InfrastructureMaster
Additional information
For a full explanation of the parameters that you can pass to GetADForest or Get-ADDomain, at the Active Directory module command prompt, type Get-Help GetADForest –detailed or Get-Help GetADDomain –detailed, and then press ENTER.
Transferring an Operations Master Role
This topic explains how to use the Active Directory module for Windows PowerShell to transfer operations master (also known as flexible single master operations or FSMO) roles.
Example
The following example demonstrates how to transfer the Operation Master, RID Master, and Domain Naming Master roles to the server FABRIKAM-DC1 in the domain to which you are currently logged on:
Move-ADDirectoryServerOperationMasterRole -Identity FABRIKAM-DC1 -OperationMasterRole RIDMaster,InfrastructureMaster,DomainNamingMaster
Move-ADDirectoryServerOperationMasterRole -Identity FABRIKAM-DC1 -OperationMasterRole RIDMaster,InfrastructureMaster,DomainNamingMaster
Additional information
For a full explanation of the parameters that you can pass to Move-ADDirectoryServerOperationMasterRole, at the Active Directory module command prompt, type Get-Help Move-ADDirectoryServerOperationMasterRole –detailed, and then press ENTER.
No comments:
Post a Comment