PowerShell Logo Small

Remove-ADReplicationSiteLink



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

Deletes an Active Directory site link used to manage replication.

SYNTAX


Remove-ADReplicationSiteLink [-Identity] <ADReplicationSiteLink> [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-Server <String>] [-Confirm] [-WhatIf]
[<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 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/p/?linkid=291094
Get-ADReplicationSiteLink
New-ADReplicationSiteLink
Set-ADReplicationSiteLink

REMARKS

<

Examples


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

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



This command removes the site link with the name Europe-Asia.




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

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



This command gets the site links that include NorthAmerica and removes them.