PowerShell Logo Small

Remove-ADReplicationSiteLinkBridge



This is the built-in help made by Microsoft for the command 'Remove-ADReplicationSiteLinkBridge', 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 the specified replication site link bridge from Active Directory.

SYNTAX


Remove-ADReplicationSiteLinkBridge [-Identity] <ADReplicationSiteLinkBridge> [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-Server <String>] [-Confirm]
[-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Remove-ADReplicationSiteLinkBridge cmdlet deletes the specified replication site link bridge from Active Directory. A site link bridge connects two or more site links
and enables transitivity between site links. Each site link in a bridge must have a site in common with another site link in the bridge.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=291095
Get-ADReplicationSiteLinkBridge
New-ADReplicationSiteLinkBridge
Set-ADReplicationSiteLinkBridge

REMARKS

<

Examples


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

PS C:\>Remove-ADReplicationSiteLinkBridge -Identity "NorthAmerica-Asia"



This command removes the site link bridge with name NorthAmerica-Asia.




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

PS C:\>Get-ADReplicationSiteLinkBridge -Filter {SiteLinksIncluded -eq "Europe-Asia"} | Remove-ADReplicationSiteLinkBridge



This command gets the site link bridges that include Europe-Asia and removes them.