PowerShell Logo Small

Get-ADReplicationConnection



This is the built-in help made by Microsoft for the command 'Get-ADReplicationConnection', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 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 specific Active Directory replication connection or a set of AD replication connection objects based on a specified filter.

SYNTAX


Get-ADReplicationConnection [-AuthType <ADAuthType>] [-Credential <PSCredential>] [-Filter <String>] [-Properties <String[]>] [-Server
<String>] [<CommonParameters>]
Get-ADReplicationConnection [-Identity] <ADReplicationConnection> [-AuthType <ADAuthType>] [-Credential <PSCredential>] [-Properties
<String[]>] [-Server <String>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-ADReplicationConnection cmdlet returns a specific Active Directory replication connection or a set of AD replication connection
objects based on a specified filter. Connections are used to enable domain controllers to replicate with each other. A connection defines a
one-way, inbound route from one domain controller, the source, to another domain controller, the destination. The Kerberos consistency checker
(KCC) reuses existing connections where it can, deletes unused connections, and creates new connections if none exist that meet the current
need.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=216352
Set-ADReplicationConnection

REMARKS

<

Examples


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

C:\PS>Get-ADReplicationConnection -Filter *



Description

-----------

Get all the replication connections.




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

C:\PS>Get-ADReplicationConnection -Filter {ReplicateFromDirectoryServer -eq "corp-DC01"}



Description

-----------

Get all replication connections that replicate from corp-DC01.




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

C:\PS>Get-ADReplicationConnection "5f98e288-19e0-47a0-9677-57f05ed54f6b"



Description

-----------

Get the replication connection with name '5f98e288-19e0-47a0-9677-57f05ed54f6b'.




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

C:\PS>Get-ADReplicationConnection "5f98e288-19e0-47a0-9677-57f05ed54f6b" -Properties *



Description

-----------

Get all the properties of the replication connection with name '5f98e288-19e0-47a0-9677-57f05ed54f6b'.