Commands › Microsoft Teams

Set-CsOnlineDialInConferencingBridge

Microsoft Teams MicrosoftTeams Set-*

Modify the settings of a Microsoft audio conferencing bridge.

Quick start script

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

# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-CsOnlineDialInConferencingBridge
$before | Format-List

# 3. Make the change (dry run first)
Set-CsOnlineDialInConferencingBridge  -WhatIf
Set-CsOnlineDialInConferencingBridge

# 4. Verify and diff
$after = Get-CsOnlineDialInConferencingBridge
Compare-Object ($before | Out-String) ($after | Out-String)

Syntax — 3 parameter sets

UniqueBridgeParams (Default)

Set-CsOnlineDialInConferencingBridge [-Identity] <Guid> [-Tenant <Guid>] [-TenantDomain <String>]
 [-DefaultServiceNumber <String>] [-SetDefault] [-DomainController <Fqdn>] [-Force] [-WhatIf] [-Confirm]
 [<CommonParameters>]

BridgeNameParams

Set-CsOnlineDialInConferencingBridge -Name <String> [-Tenant <Guid>] [-TenantDomain <String>]
 [-DefaultServiceNumber <String>] [-SetDefault] [-DomainController <Fqdn>] [-Force] [-WhatIf] [-Confirm]
 [<CommonParameters>]

InstanceParams

Set-CsOnlineDialInConferencingBridge [-Instance] <ConferencingBridge> [-Tenant <Guid>]
 [-TenantDomain <String>] [-DefaultServiceNumber <String>] [-SetDefault] [-DomainController <Fqdn>] [-Force]
 [-WhatIf] [-Confirm] [<CommonParameters>]

Parameters (11)

ParameterTypeRequiredWhat it controls
-Confirm SwitchParameter The Confirm switch causes the command to pause processing, and requires confirmation to proceed.
-DefaultServiceNumber String Specifies the default phone number to be used on the Microsoft audio conferencing bridge. The default number is used in meeting invitations.
-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 to be modified.
-Instance ConferencingBridge Allows you to pass a reference to a Microsoft audio conferencing bridge object to the cmdlet rather than set individual parameter values.
-Name String Specifies the name of the audio conferencing bridge to be modified.
-SetDefault SwitchParameter PARAMVALUE: SwitchParameter
-Tenant Guid This parameter is reserved for internal Microsoft use.
-TenantDomain String This parameter is reserved for internal Microsoft use.
-WhatIf SwitchParameter The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes.

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