Commands › Microsoft Teams

Get-CsOnlineDialInConferencingBridge

Microsoft Teams MicrosoftTeams Get-*

View the settings on an audio conferencing bridge that is used when Microsoft is the audio conferencing provider.

Quick start script

# Get-CsOnlineDialInConferencingBridge — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-MicrosoftTeams -CertificateThumbprint $thumb -ApplicationId $appId -TenantId $tenantId

# 2. Run and inspect
Get-CsOnlineDialInConferencingBridge | Format-List

# 3. Export for evidence / drift tracking
Get-CsOnlineDialInConferencingBridge | Export-Clixml .\CsOnlineDialInConferencingBridge-$(Get-Date -Format yyyyMMdd).xml

Syntax — 3 parameter sets

EmptySet (Default)

Get-CsOnlineDialInConferencingBridge [-Tenant <Guid>] [-TenantDomain <String>]
 [-DomainController <Fqdn>] [-Force] [<CommonParameters>]

UniqueBridgeParams

Get-CsOnlineDialInConferencingBridge [-Identity] <Guid> [-Tenant <Guid>] [-TenantDomain <String>]
 [-DomainController <Fqdn>] [-Force] [<CommonParameters>]

BridgeNameParams

Get-CsOnlineDialInConferencingBridge -Name <String> [-Tenant <Guid>] [-TenantDomain <String>]
 [-DomainController <Fqdn>] [-Force] [<CommonParameters>]

Parameters (6)

ParameterTypeRequiredWhat it controls
-DomainController Fqdn Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter include:
-Force SwitchParameter The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for...
-Identity Guid Specifies the globally-unique identifier (GUID) for the audio conferencing bridge.
-Name String Specifies the name of the audio conferencing bridge.
-Tenant Guid This parameter is reserved for internal Microsoft use.
-TenantDomain String This parameter is reserved for internal Microsoft use.

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.