Skip to content

Commit e7090cc

Browse files
authored
Merge branch 'master' into patch-9
2 parents b874352 + bd78275 commit e7090cc

File tree

2 files changed

+131
-5
lines changed

2 files changed

+131
-5
lines changed

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

Lines changed: 67 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ NOTE: The call park feature currently available in desktop. mobile and web clien
2323

2424
### Identity (Default)
2525
```
26-
New-CsTeamsCallParkPolicy [-Tenant <System.Guid>] [-AllowCallPark <Boolean>] [[-Identity] <XdsIdentity>]
27-
[-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
26+
New-CsTeamsCallParkPolicy [-Tenant <System.Guid>] [-AllowCallPark <Boolean>] [[-Identity] <XdsIdentity>] [-PickupRangeStart <Integer>] [-PickupRangeEnd <Integer>] [-ParkTimeoutSeconds <Integer>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2827
```
2928

3029
## DESCRIPTION
@@ -35,10 +34,24 @@ The TeamsCallParkPolicy controls whether or not users are able to leverage the c
3534

3635
### Example 1
3736
```powershell
38-
PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -AllowCallPark $false
37+
PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -AllowCallPark $true
3938
```
4039

41-
Create a new custom policy that has call park enabled. This policy can then be assigned to individual users.
40+
Create a new custom policy that has call park enabled. This policy can then be assigned to individual users.
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
4255

4356
## PARAMETERS
4457

@@ -102,6 +115,55 @@ Accept pipeline input: False
102115
Accept wildcard characters: False
103116
```
104117
118+
### -PickupRangeEnd
119+
Specify the maximum value that a rendered pickup code can take. Value can be from 10 to 9999.
120+
121+
Note: PickupRangeStart must be smaller than PickupRangeEnd.
122+
123+
```yaml
124+
Type: Integer
125+
Parameter Sets: (All)
126+
Aliases:
127+
128+
Required: False
129+
Position: Named
130+
Default value: 99
131+
Accept pipeline input: False
132+
Accept wildcard characters: False
133+
```
134+
135+
### -ParkTimeoutSeconds
136+
Specify the number of seconds to wait before ringing the parker when the parked call hasn't been picked up. Value can be from 120 to 1800 (seconds).
137+
138+
```yaml
139+
Type: Integer
140+
Parameter Sets: (All)
141+
Aliases:
142+
143+
Required: False
144+
Position: Named
145+
Default value: 300
146+
Accept pipeline input: False
147+
Accept wildcard characters: False
148+
```
149+
150+
### -PickupRangeStart
151+
Specify the minimum value that a rendered pickup code can take. Value can be from 10 to 9999.
152+
153+
Note: PickupRangeStart must be smaller than PickupRangeEnd.
154+
155+
```yaml
156+
Type: Integer
157+
Parameter Sets: (All)
158+
Aliases:
159+
160+
Required: False
161+
Position: Named
162+
Default value: 10
163+
Accept pipeline input: False
164+
Accept wildcard characters: False
165+
```
166+
105167
### -Tenant
106168
Internal Microsoft use only.
107169
@@ -133,6 +195,7 @@ Accept pipeline input: False
133195
Accept wildcard characters: False
134196
```
135197
198+
136199
### CommonParameters
137200
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
138201
For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).

skype/skype-ps/skype/Set-CsTeamsCallParkPolicy.md

Lines changed: 64 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ NOTE: The call park feature currently available in desktop, mobile, and web clie
2222

2323
### Identity (Default)
2424
```
25-
Set-CsTeamsCallParkPolicy [-Tenant <System.Guid>] [-AllowCallPark <Boolean>] [[-Identity] <XdsIdentity>]
25+
Set-CsTeamsCallParkPolicy [-Tenant <System.Guid>] [-AllowCallPark <Boolean>] [-PickupRangeStart <Integer>] [-PickupRangeEnd <Integer>] [-ParkTimeoutSeconds <Integer>] [[-Identity] <XdsIdentity>]
2626
[-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2727
```
2828

@@ -44,6 +44,20 @@ PS C:\> Set-CsTeamsCallParkPolicy -Identity SalesPolicy -AllowCallPark $true
4444

4545
Update the existing policy "SalesPolicy" to enable the call park feature.
4646

47+
### Example 2
48+
```powershell
49+
PS C:\> Set-CsTeamsCallParkPolicy -Identity "SalesPolicy" -PickupRangeStart 500 -PickupRangeEnd 1500
50+
```
51+
52+
Update the existing policy "SalesPolicy" to generate pickup numbers starting from 500 and up until 1500.
53+
54+
### Example 3
55+
```powershell
56+
PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -ParkTimeoutSeconds 600
57+
```
58+
59+
Update the existing policy "SalesPolicy" to ring back the parker after 600 seconds if the parked call is unanswered
60+
4761
## PARAMETERS
4862

4963
### -AllowCallPark
@@ -121,6 +135,55 @@ Accept pipeline input: True (ByValue)
121135
Accept wildcard characters: False
122136
```
123137
138+
### -PickupRangeEnd
139+
Specify the maximum value that a rendered pickup code can take. Value can be from 10 to 9999.
140+
141+
Note: PickupRangeStart must be smaller than PickupRangeEnd.
142+
143+
```yaml
144+
Type: Integer
145+
Parameter Sets: (All)
146+
Aliases:
147+
148+
Required: False
149+
Position: Named
150+
Default value: 99
151+
Accept pipeline input: False
152+
Accept wildcard characters: False
153+
```
154+
155+
### -ParkTimeoutSeconds
156+
Specify the number of seconds to wait before ringing the parker when the parked call hasn't been picked up. Value can be from 120 to 1800 (seconds).
157+
158+
```yaml
159+
Type: Integer
160+
Parameter Sets: (All)
161+
Aliases:
162+
163+
Required: False
164+
Position: Named
165+
Default value: 300
166+
Accept pipeline input: False
167+
Accept wildcard characters: False
168+
```
169+
170+
### -PickupRangeStart
171+
Specify the minimum value that a rendered pickup code can take. Value can be from 10 to 9999.
172+
173+
Note: PickupRangeStart must be smaller than PickupRangeEnd.
174+
175+
```yaml
176+
Type: Integer
177+
Parameter Sets: (All)
178+
Aliases:
179+
180+
Required: False
181+
Position: Named
182+
Default value: 10
183+
Accept pipeline input: False
184+
Accept wildcard characters: False
185+
```
186+
124187
### -Tenant
125188
Internal Microsoft use only.
126189

0 commit comments

Comments
 (0)