Tip: You can list the GC (Global Catalog) servers with Powershell.
1 2 3 4 5 6 7 8 |
# Solution 1 Get-ADDomainController -Filter {IsGlobalCatalog -eq $true} # Solution 2 ([System.DirectoryServices.ActiveDirectory.Forest]::GetCurrentForest()).FindAllGlobalCatalogs() | Select-Object -Property Name [System.DirectoryServices.ActiveDirectory.Forest]::GetCurrentForest().GlobalCatalogs | Select-Object -Property Name |
Note: Get-ADDomainController is a cmdlet from the activediretory module.