Getting Microsoft supported backups of Domain Controllers is an important part of recovery strategy.
A best practice is to locate all Flexible Master Single Operator (FSMO) roles on a single DC in the domain. That way you can more easily target the DC that hosts the FSMOs for backup.

PowerShell code to check for FSMO role holders for the forest & current domain:
$ADForestArray = Get-ADForest
$ADForestArray | Select-Object SchemaMaster,DomainNamingMaster
ForEach ($ADForestArrayDomain in $ADForestArray.Domains)
{
$DomainDC = (Get-ADDomainController -Discover -DomainName $ADForestArrayDomain).Name
Get-ADDomain -Server $DomainDC | Select-Object PDCEmulator,RIDMaster,InfrastructureMaster
}
Recent Comments