Commands › Microsoft Teams

Get-CsTeamsVoiceApplicationsPolicy

Microsoft Teams MicrosoftTeams Get-*

Get Teams voice applications policy information. TeamsVoiceApplications policy governs what permissions the supervisors/users have over auto attendants and call queues.

Quick start script

# Get-CsTeamsVoiceApplicationsPolicy — 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-CsTeamsVoiceApplicationsPolicy | Format-List

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

Syntax — 2 parameter sets

Identity (Default)

Get-CsTeamsVoiceApplicationsPolicy [[-Identity] <String>]
 [<CommonParameters>]

Filter

Get-CsTeamsVoiceApplicationsPolicy [-Filter <String>]
 [<CommonParameters>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-Filter String Enables you to use wildcards when retrieving one or more Teams voice applications policies. For example, to return all the policies configured at the per-user scope, use this syntax:
-Identity String Unique identifier of the Teams voice applications policy to be retrieved. To return the global policy, use this syntax:

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