Commands › Microsoft Teams

New-CsTeamsSurvivableBranchAppliancePolicy

Microsoft Teams MicrosoftTeams New-*

Creates a new Survivable Branch Appliance (SBA) policy object in the tenant.

Quick start script

# New-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)
New-CsTeamsSurvivableBranchAppliancePolicy -Identity <String> -WhatIf
New-CsTeamsSurvivableBranchAppliancePolicy -Identity <String>

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

Syntax

New-CsTeamsSurvivableBranchAppliancePolicy [-Identity] <String> [-BranchApplianceFqdns <Object>]
 [-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 yes The unique identifier.
-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.