Created
September 7, 2017 01:04
-
-
Save tom-henderson/4359f628c3e31edcf649a7ee4f98410c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-ADDomainController -Filter * ` | |
| Select Name, IsGlobalCatalog, Site, IPV4Address, ` | |
@{N='SchemaMaster';E={'SchemaMaster' -in $_.OperationMasterRoles}}, ` | |
@{N='DomainNamingMaster';E={'DomainNamingMaster' -in $_.OperationMasterRoles}}, ` | |
@{N='PDCEmulator';E={'PDCEmulator' -in $_.OperationMasterRoles}}, ` | |
@{N='RIDMaster';E={'RIDMaster' -in $_.OperationMasterRoles}}, ` | |
@{N='InfrastructureMaster';E={'InfrastructureMaster' -in $_.OperationMasterRoles}} ` | |
| FT -AutoSize |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment