Commands › Microsoft Teams

Remove-CsTeamsMeetingBrandingPolicy

Microsoft Teams MicrosoftTeams Remove-*

The **CsTeamsMeetingBrandingPolicy** cmdlet enables administrators to control the appearance in meetings by defining custom backgrounds, logos, and colors.

Quick start script

# Remove-CsTeamsMeetingBrandingPolicy — 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-CsTeamsMeetingBrandingPolicy
$before | Format-List

# 3. Make the change (dry run first)
Remove-CsTeamsMeetingBrandingPolicy -Identity <String> -WhatIf
Remove-CsTeamsMeetingBrandingPolicy -Identity <String>

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

Syntax

Remove-CsTeamsMeetingBrandingPolicy [-Identity] <String> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]

Parameters (4)

ParameterTypeRequiredWhat it controls
-Confirm SwitchParameter Prompts you for confirmation before running the cmdlet.
-Force SwitchParameter Suppresses any confirmation prompts that would otherwise be displayed before making changes.
-Identity String yes Unique identifier of the policy to be deleted.
-WhatIf SwitchParameter Describes what would happen if you executed the command without actually executing the command.

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