Commands › Microsoft Teams

Get-CsTeamsSharedCallingRoutingPolicy

Microsoft Teams MicrosoftTeams Get-*

Get Teams shared calling routing policy information. Teams shared calling routing policy is used to configure shared calling.

Quick start script

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

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

Syntax — 2 parameter sets

Identity (Default)

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

Filter

Get-CsTeamsSharedCallingRoutingPolicy [-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 Unique identifier of the Teams shared calling routing policy to be retrieved.

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