PowerShell Logo Small

Get-ADReplicationSiteLinkBridge



This is the built-in help made by Microsoft for the command 'Get-ADReplicationSiteLinkBridge', 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 site link bridge or a set of site link bridge objects based on a specified filter.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Get-ADReplicationSiteLinkBridge cmdlet returns a specific Active Directory site link bridge or a set of site link bridge objects based on
a specified filter. 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/?LinkId=216359
New-ADReplicationSiteLinkBridge
Remove-ADReplicationSiteLinkBridge
Set-ADReplicationSiteLinkBridge

REMARKS

<

Examples


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

C:\PS>Get-ADReplicationSiteLinkBridge -Filter *



Description

-----------

Get all the site link bridges.




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

C:\PS>Get-ADReplicationSiteLinkBridge -Filter {SiteLinksIncluded -eq "NorthAmerica-Europe"} | FT Name,SiteLinksIncluded -A



Description

-----------

Get all site link bridges that include site link 'NorthAmerica-Europe'.




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

C:\PS>Get-ADReplicationSiteLinkBridge "NorthAmerica-Asia"



Description

-----------

Get the site link bridge with name 'NorthAmerica-Europe'




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

C:\PS>Get-ADReplicationSiteLinkBridge "NorthAmerica-Asia" -Properties *



Description

-----------

Get all the properties of the site link bridge with name 'NorthAmerica-Europe'.