File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -34,11 +34,25 @@ The TeamsCallParkPolicy controls whether or not users are able to leverage the c
34
34
35
35
### Example 1
36
36
``` powershell
37
- PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -AllowCallPark $false
37
+ PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -AllowCallPark $true
38
38
```
39
39
40
40
Create a new custom policy that has call park enabled. This policy can then be assigned to individual users.
41
41
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
+
42
56
## PARAMETERS
43
57
44
58
### -AllowCallPark
You can’t perform that action at this time.
0 commit comments