PowerShell Logo Small

Get-ADReplicationFailure



This is the built-in help made by Microsoft for the command 'Get-ADReplicationFailure', 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

Returns a collection of data describing an Active Directory replication failure.

SYNTAX


Get-ADReplicationFailure [-Target] <Object[]> [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-EnumeratingServer <String>] [-Filter <String>]
[<CommonParameters>]
Get-ADReplicationFailure [[-Target] <Object[]>] [-Scope] {Domain | Forest | Server | Site} [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-EnumeratingServer
<String>] [-Filter <String>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-ADReplicationFailure cmdlet returns all failures currently associated with a given domain controller or Active Directory Lightweight Directory Services (AD LDS)
instance. The return object is of type ADReplicationFailure. This cmdlet returns the list of failures in the ADReplicationSummary object for a specific server.



<

RELATED LINKS


Online Version: http://go.microsoft.com/fwlink/p/?linkid=291040

REMARKS

<

Examples


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

PS C:\>Get-ADReplicationFailure -Target corp-DC01



This command gets a collection of data describing an Active Directory replication failure for corp-DC01.




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

PS C:\>Get-ADReplicationFailure -Target corp-DC01 -Scope Server



This command gets a collection of data describing an Active Directory replication failure from corp-DC01 (same as above).




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

PS C:\>Get-ADReplicationFailure -Target corp-DC01,corp-DC02



This command gets a collection of data describing an Active Directory replication failure from corp-DC01 and corp-DC02.




-------------------------- EXAMPLE 4 --------------------------

PS C:\>Get-ADReplicationFailure -Target NorthAmerica -Scope Site



This command gets a collection of data describing Active Directory replication failures from all the domain controllers in the site NorthAmerica.




-------------------------- EXAMPLE 5 --------------------------

PS C:\>Get-ADReplicationFailure -Target "corp.contoso.com" -Scope Domain



This command gets a collection of data describing Active Directory replication failures from all the domain controllers in the domain corp.contoso.com.




-------------------------- EXAMPLE 6 --------------------------

PS C:\>Get-ADReplicationFailure -Target "corp.contoso.com" -Scope Forest



This command gets a collection of data describing Active Directory replication failures from all the domain controllers in the forest corp.contoso.com.