Commands › Microsoft Teams

Set-CsTeamsSurvivableBranchAppliancePolicy

Microsoft Teams MicrosoftTeams Set-*

Changes the Survivable Branch Appliance (SBA) Policy configuration settings for the specified tenant.

Quick start script

# Set-CsTeamsSurvivableBranchAppliancePolicy — 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-CsTeamsSurvivableBranchAppliancePolicy
$before | Format-List

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

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

Syntax

Set-CsTeamsSurvivableBranchAppliancePolicy [-BranchApplianceFqdns <Object>] [[-Identity] <String>]
 [-MsftInternalProcessingMode <String>] [-WhatIf] [-Confirm] [<CommonParameters>]

Parameters (5)

ParameterTypeRequiredWhat it controls
-BranchApplianceFqdns Object The FQDN of the SBA(s) in the site.
-Confirm SwitchParameter Prompts you for confirmation before running the cmdlet.
-Identity String The identity of the policy.
-MsftInternalProcessingMode String For internal use only.
-WhatIf SwitchParameter Shows what would happen if the cmdlet runs. The cmdlet is not run.

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