Skip to content

Commit 875f90b

Browse files
authored
Update New-CsTeamsCallParkPolicy.md
1 parent d6d8765 commit 875f90b

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

skype/skype-ps/skype/New-CsTeamsCallParkPolicy.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,25 @@ The TeamsCallParkPolicy controls whether or not users are able to leverage the c
3434

3535
### Example 1
3636
```powershell
37-
PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -AllowCallPark $false
37+
PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -AllowCallPark $true
3838
```
3939

4040
Create a new custom policy that has call park enabled. This policy can then be assigned to individual users.
4141

42+
### Example 2
43+
```powershell
44+
PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -AllowCallPark $true -PickupRangeStart 500 -PickupRangeEnd 1500
45+
```
46+
47+
Create a new custom policy that has call park enabled. This policy will generate pickup numbers starting from 500 and up until 1500.
48+
49+
### Example 3
50+
```powershell
51+
PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -AllowCallPark $true -ParkTimeoutSeconds 600
52+
```
53+
54+
Create a new custom call park policy which will ring back the parker after 600 seconds if the parked call is unanswered
55+
4256
## PARAMETERS
4357

4458
### -AllowCallPark

0 commit comments

Comments
 (0)