Commands › Microsoft Teams
New-CsTeamsCallParkPolicy
The New-CsTeamsCallParkPolicy cmdlet lets you create a new custom policy that can then be assigned to one or more specific users.
Quick start script
# New-CsTeamsCallParkPolicy — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-MicrosoftTeams -CertificateThumbprint $thumb -ApplicationId $appId -TenantId $tenantId
# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-CsTeamsCallParkPolicy
$before | Format-List
# 3. Make the change (dry run first)
New-CsTeamsCallParkPolicy -WhatIf
New-CsTeamsCallParkPolicy
# 4. Verify and diff
$after = Get-CsTeamsCallParkPolicy
Compare-Object ($before | Out-String) ($after | Out-String)
Syntax
New-CsTeamsCallParkPolicy [-Tenant <System.Guid>] [-AllowCallPark <Boolean>] [[-Identity] <XdsIdentity>]
[-PickupRangeStart <Integer>] [-PickupRangeEnd <Integer>] [-ParkTimeoutSeconds <Integer>] [-Force]
[-WhatIf] [-Confirm] [-Description <String>] [<CommonParameters>]
Parameters (10)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.