PowerShell Logo Small

Remove-ADReplicationSiteLink



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

Deletes an Active Directory site link used to manage replication.

SYNTAX


Remove-ADReplicationSiteLink [-Identity] <ADReplicationSiteLink> [-AuthType <ADAuthType>] [-Credential <PSCredential>] [-Server <String>]
[-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Remove-ADReplicationSiteLink cmdlet removes a site link object used to manage replication traffic between two sites in your Active
Directory installation. For more information on site links, see the following topic "Creating a Site Link Design" in the TechNet Library:
http://go.microsoft.com/fwlink/?LinkId=221870



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=216394
Get-ADReplicationSiteLink
New-ADReplicationSiteLink
Set-ADReplicationSiteLink

REMARKS

<

Examples


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

C:\PS>Remove-ADReplicationSiteLink "Europe-Asia"



Description

-----------

Remove the site link with the name 'Europe-Asia'.




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

C:\PS>Get-ADReplicationSiteLink -Filter {SitesIncluded -eq "NorthAmerica"} | Remove-ADReplicationSiteLink



Description

-----------

Get the site links that include NorthAmerica and remove them.