Commands › Microsoft Teams

Remove-CsTeamsMeetingBroadcastPolicy

Microsoft Teams MicrosoftTeams Remove-*

Deletes an existing Teams meeting broadcast policy in your tenant.

Quick start script

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

# 3. Make the change (dry run first)
Remove-CsTeamsMeetingBroadcastPolicy  -WhatIf
Remove-CsTeamsMeetingBroadcastPolicy

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

Syntax

Remove-CsTeamsMeetingBroadcastPolicy [-Tenant <Guid>] [-Identity] <XdsIdentity> [-Force] [-WhatIf]
 [-Confirm] [<CommonParameters>]

Parameters (5)

ParameterTypeRequiredWhat it controls
-Confirm SwitchParameter Prompts you for confirmation before running the cmdlet.
-Force SwitchParameter Suppress all non-fatal errors when running this command.
-Identity XdsIdentity Unique identifier for the policy to be removed. Policies can be configured at the global or per-user scopes. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot...
-Tenant Guid Not applicable to online service.
-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.