Commands › Microsoft Teams

Get-CsTeamsAudioConferencingPolicy

Microsoft Teams MicrosoftTeams Get-*

Audio conferencing policies can be 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

# Get-CsTeamsAudioConferencingPolicy — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-MicrosoftTeams -CertificateThumbprint $thumb -ApplicationId $appId -TenantId $tenantId

# 2. Run and inspect
Get-CsTeamsAudioConferencingPolicy | Format-List

# 3. Export for evidence / drift tracking
Get-CsTeamsAudioConferencingPolicy | Export-Clixml .\CsTeamsAudioConferencingPolicy-$(Get-Date -Format yyyyMMdd).xml

Syntax — 2 parameter sets

Identity (Default)

Get-CsTeamsAudioConferencingPolicy [[-Identity] <String>] [-LocalStore] [<CommonParameters>]

Filter

Get-CsTeamsAudioConferencingPolicy [-LocalStore] [-Filter <String>] [<CommonParameters>]

Parameters (3)

ParameterTypeRequiredWhat it controls
-Filter String Enables you to use wildcard characters when indicating the policy (or policies) to be returned.
-Identity String Unique identifier for the policy to be retrieved. To retrieve the global policy, use this syntax: -Identity global. To retrieve a per-user policy use syntax similar to this: -Identity "EMEA Users". If this parameter...
-LocalStore SwitchParameter Internal Microsoft use only.

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