Commands › Microsoft Teams
Set-CsTeamsCallParkPolicy
The Set-CsTeamsCallParkPolicy cmdlet lets you update a policy that has already been created for your organization.
Quick start script
# Set-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)
Set-CsTeamsCallParkPolicy -WhatIf
Set-CsTeamsCallParkPolicy
# 4. Verify and diff
$after = Get-CsTeamsCallParkPolicy
Compare-Object ($before | Out-String) ($after | Out-String)
Syntax — 3 parameter sets
Default
Set-CsTeamsCallParkPolicy [-AllowCallPark <Boolean>] [-Description <String>] [[-Identity] <String>]
[-ParkTimeoutSeconds <Int64>] [-PickupRangeEnd <Int64>] [-PickupRangeStart <Int64>]
[-MsftInternalProcessingMode <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
Identity (Default)
Set-CsTeamsCallParkPolicy [-Tenant <System.Guid>] [-AllowCallPark <Boolean>] [-PickupRangeStart <Integer>] [-PickupRangeEnd <Integer>] [-ParkTimeoutSeconds <Integer>] [[-Identity] <XdsIdentity>]
[-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
Instance
Set-CsTeamsCallParkPolicy [-Tenant <System.Guid>] [-AllowCallPark <Boolean>] [-Instance <PSObject>] [-Force]
[-WhatIf] [-Confirm] [<CommonParameters>]
Parameters (12)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.