Commands › Microsoft Teams

Remove-CsTeamsAudioConferencingPolicy

Microsoft Teams MicrosoftTeams Remove-*

Deletes a custom Teams audio conferencing policy. Audio conferencing policies are used to manage audio conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization.

Quick start script

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

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

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

Syntax

Remove-CsTeamsAudioConferencingPolicy [-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. Suppresses any confirmation prompts that would otherwise be displayed before making changes.
-Identity String yes Unique identifier for the TeamsAudioConferencingPolicy to be removed. To remove global policy, use this syntax: -Identity global. (Note that the global policy cannot be removed. Instead, all the policy properties...
-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.