Skip to content

Instantly share code, notes, and snippets.

@AdilHindistan
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AdilHindistan/9574786 to your computer and use it in GitHub Desktop.
Save AdilHindistan/9574786 to your computer and use it in GitHub Desktop.
## Get PDC Emulator in PowerShell
## With ADModule
(Get-ADDomain).PDCEmulator
## Without AD Module
$NTDSPDCEmulator = ([adsi]'').fsmoroleowner[0]
$PDCEmulator = ([adsi]"LDAP://$NTDSPDCEmulator").Parent
$PDC = ([adsi]$PDCEmulator).DnsHostName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment