PowerShell Logo Small

Get-ADDomainControllerPasswordReplicationPolicyUsage



This is the built-in help made by Microsoft for the command 'Get-ADDomainControllerPasswordReplicationPolicyUsage', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Gets the Active Directory accounts that are authenticated by a read-only domain controller or that are in the revealed list of the domain controller.

SYNTAX


Get-ADDomainControllerPasswordReplicationPolicyUsage [-Identity] <ADDomainController> [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-RevealedAccounts]
[-Server <String>] [<CommonParameters>]
Get-ADDomainControllerPasswordReplicationPolicyUsage [-Identity] <ADDomainController> [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-Server <String>]
-AuthenticatedAccounts [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-ADDomainControllerPasswordReplicationPolicyUsage cmdlet gets the user or computer accounts that are authenticated by a read-only domain controller (RODC) or that
have passwords that are stored on that RODC. The list of accounts that are stored on a RODC is known as the revealed list.


To get accounts that are authenticated by the RODC, use the AuthenticatedAccounts parameter. To get the accounts that have passwords stored on the RODC, use the
RevealedAccounts parameter.


The Identity parameter specifies the RODC. You can identify a domain controller by its GUID, IPV4Address, global IPV6Address, or DNS host name. You can also identify a
domain controller by the name of the server object that represents the domain controller, the Distinguished Name (DN) of the NTDS settings object of the server object, the
GUID of the NTDS settings object of the server object under the configuration partition, or the DN of the computer object that represents the domain controller. You can also
set the Identity parameter to a domain controller object variable, such as $<localDomainControllerobject>, or pass a domain controller object through the pipeline to the
Identity parameter. For example, you can use the Get-ADDomainController cmdlet to retrieve a domain controller object and then pass the object through the pipeline to the
Get-ADDomainControllerPasswordReplicationPolicyUsage cmdlet. If you specify a writeable domain controller for this cmdlet, the cmdlet returns a non-terminating error.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=291028
Get-ADDomainController

REMARKS

<

Examples


-------------------------- EXAMPLE 1 --------------------------

PS C:\> Get-ADDomainControllerPasswordReplicationPolicyUsage -Identity "FABRIKAM-RODC1" -AuthenticatedAccounts | ft Name,ObjectClass -A



This command gets the authenticated accounts for the RODC specified by the Identity parameter. The command displays the name and object class of each.




-------------------------- EXAMPLE 2 --------------------------

PS C:\> Get-ADDomainControllerPasswordReplicationPolicyUsage -Identity "FABRIKAM-RODC1" -RevealedAccounts | ft Name,ObjectClass -A



This command gets the revealed accounts for the RODC specified by the Identity parameter. The command displays the name and object class of each account returned.




-------------------------- EXAMPLE 3 --------------------------

PS C:\> Get-ADDomainController -Filter {IsReadOnly -eq $true} | Get-ADDomainControllerPasswordReplicationPolicyUsage
DistinguishedName : CN=krbtgt_35512,CN=Users,DC=Fabrikam,DC=com
Enabled : False
Name : krbtgt_35512
ObjectClass : user
ObjectGUID : 8c7268f9-add3-409c-968b-de029e517211
SamAccountName : krbtgt_35512
SID : S-1-5-21-41432690-3719764436-1984117282-1106
UserPrincipalName :

DistinguishedName : CN=CSD2722780,OU=Domain Controllers,DC=Fabrikam,DC=com
Enabled : True
Name : CSD2722780
ObjectClass : computer
ObjectGUID : 63a5e005-e01f-4fc9-ae71-9d9367f808bc
SamAccountName : CSD2722780$
SID : S-1-5-21-41432690-3719764436-1984117282-1105
UserPrincipalName :



This command gets the list of accounts cached across all RODCs in the domain.