Commands › Microsoft Teams

Get-CsTeamsCallHoldPolicy

Microsoft Teams MicrosoftTeams Get-*

Returns information about the policies configured to customize the call hold experience for Teams clients.

Quick start script

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

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

Syntax — 2 parameter sets

Identity (Default)

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

Filter

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

Parameters (2)

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

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