Your network contains one Active Directory domain named contoso.com. The forest functional level is Windows
Server 2012. All servers run Windows Server 2012 R2. All client computers run Windows 8.1.
The domain contains 10 domain controllers and a read-only domain controller (RODC) named RODC01. All
domain controllers and RODCs are hosted on a Hyper-V host that runs Windows Server 2012 R2.
You need to identify which domain controller must be online when cloning a domain controller.
Which cmdlet should you use?
A.
Get-AdGroupMember
B.
Get-ADDomainControllerPasswordReplicationPolicy
C.
Get-ADDomainControllerPasswordReplicationPolicyUsage
D.
Get-ADDomain
E.
Get-ADOptionalFeature
F.
Get-ADAccountAuthorizationGroup
G.
Get-ADAuthenticationPolicySilo
H.
Get-ADAuthenticationPolicy
Explanation:
We must verify the PDC emulator role is hosted by a domain controller that runs Windows Server 2012 and that
it is online and reachable by the cloned domain controller during cloning.
You can combine the following Active Directory Windows PowerShell Module cmdlets to return the version of
the PDC emulator:
Get-adddomaincontroller
Get-adcomputer
If not provided the domain, these cmdlets assume the domain of the computer where run.
The following command returns PDCE and Operating System info:
get-adcomputer(Get-ADDomainController -Discover -Service “PrimaryDC”).name -property * | format-list
dnshostname,operatingsystem,operatingsystemversion