Commands › Microsoft Teams

Get-CsTeamsCallingPolicy

Microsoft Teams MicrosoftTeams Get-*

Returns information about the teams calling policies configured for use in your organization. Teams calling policies help determine which users are able to use calling functionality within Microsoft Teams.

Quick start script

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

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

Syntax — 2 parameter sets

Identity (Default)

Get-CsTeamsCallingPolicy [[-Identity] <string>] [<CommonParameters>]

Filter

Get-CsTeamsCallingPolicy [-Filter <string>] [<CommonParameters>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-Filter String Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*".
-Identity String Specify the TeamsCallingPolicy that you would like to retrieve.

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