Skip to content

Commit 5d0cd59

Browse files
committed
resolved feedback
1 parent dcfcb25 commit 5d0cd59

File tree

4 files changed

+112
-24
lines changed

4 files changed

+112
-24
lines changed

skype/skype-ps/skype/Get-CsCallQueue.md

Lines changed: 98 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,13 @@ The Get-CsCallQueue cmdlet returns the identified Call Queues.
1313
## SYNTAX
1414

1515
```
16-
Get-CsCallQueue [-BypassDualWrite <Object>] [-DomainController <Object>] [-Force] [-Identity <Object>]
17-
[-Tenant <Object>] [-AsJob] [<CommonParameters>]
16+
Get-CsCallQueue [-BypassDualWrite <Object>] [-DomainController <Object>] [-Force] [-Identity <Object>] [-Tenant <Object>] [First <Int32>]
17+
[Skip <Int32>] [ExcludeContent <Switch>] [Sort <String>] [Descending <Switch>] [NameFilter <String>] [-AsJob] [<CommonParameters>]
1818
```
1919

2020
## DESCRIPTION
2121
The Get-CsCallQueue cmdlet lets you retrieve information about the Call Queues in your organization. Call Queue output contains statistical data on the number of active calls that are in the queue.
2222

23-
If called without parameters, Get-CsCallQueue returns a collection of all Call Queues configured to be used in your organization.
24-
25-
The Get-CsCallQueue cmdlet may suggest additional steps required to complete the Call Queue setup.
26-
2723
## EXAMPLES
2824

2925
### -------------------------- Example 1 --------------------------
@@ -107,6 +103,102 @@ Accept pipeline input: False
107103
Accept wildcard characters: False
108104
```
109105
106+
### -First
107+
The First parameter gets the first N Call Queues
108+
109+
```yaml
110+
Type: Int32
111+
Parameter Sets: (All)
112+
Aliases:
113+
Applicable: Skype for Business Online
114+
115+
Required: False
116+
Position: Named
117+
Default value: 100
118+
Accept pipeline input: False
119+
Accept wildcard characters: False
120+
```
121+
122+
### -Skip
123+
The Skip parameter skips the first N Call Queues
124+
125+
```yaml
126+
Type: Int32
127+
Parameter Sets: (All)
128+
Aliases:
129+
Applicable: Skype for Business Online
130+
131+
Required: False
132+
Position: Named
133+
Default value: 0
134+
Accept pipeline input: False
135+
Accept wildcard characters: False
136+
```
137+
138+
### -ExcludeContent
139+
The ExcludeContent parameter only displays the Name and Id of the Call Queues
140+
141+
```yaml
142+
Type: SwitchParameter
143+
Parameter Sets: (All)
144+
Aliases:
145+
Applicable: Skype for Business Online
146+
147+
Required: False
148+
Position: Named
149+
Default value: None
150+
Accept pipeline input: False
151+
Accept wildcard characters: False
152+
```
153+
154+
### -Sort
155+
The Sort parameter specifies the property used to sort.
156+
157+
```yaml
158+
Type: System.String
159+
Parameter Sets: (All)
160+
Aliases:
161+
Applicable: Skype for Business Online
162+
163+
Required: True
164+
Position: Named
165+
Default value: Name
166+
Accept pipeline input: False
167+
Accept wildcard characters: False
168+
```
169+
170+
### -Descending
171+
The Descending parameter sorts Call Queues in descending order
172+
173+
```yaml
174+
Type: SwitchParameter
175+
Parameter Sets: (All)
176+
Aliases:
177+
Applicable: Skype for Business Online
178+
179+
Required: False
180+
Position: Named
181+
Default value: None
182+
Accept pipeline input: False
183+
Accept wildcard characters: False
184+
```
185+
186+
### -NameFilter
187+
The NameFilter parameter returns Call Queues where name contains specified string
188+
189+
```yaml
190+
Type: System.String
191+
Parameter Sets: (All)
192+
Aliases:
193+
Applicable: Skype for Business Online
194+
195+
Required: True
196+
Position: Named
197+
Default value: None
198+
Accept pipeline input: False
199+
Accept wildcard characters: False
200+
```
201+
110202
### CommonParameters
111203
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
112204

skype/skype-ps/skype/New-CsCallQueue.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,21 @@ Creates new Call Queue in your Skype for Business Online organization.
1313
## SYNTAX
1414

1515
```
16-
New-CsCallQueue -Name <System.String> [-AgentAlertTime <Int16>] [-AllowOptOut <System.Boolean>] [-DistributionLists <System.Collections.Generic.List`1[System.Guid]>]
17-
[-Tenant <System.Guid>] [-UseDefaultMusicOnHold <System.Boolean>] [-WelcomeMusicAudioFileId <System.Guid>] [-MusicOnHoldAudioFileId <System.Guid>]
18-
[-OverflowAction <Microsoft.Rtc.Management.Hosted.HuntGroup.Models.OverflowAction>] [-OverflowActionTarget <System.Guid>] [-OverflowThreshold <Int16>]
19-
[-TimeoutAction <Microsoft.Rtc.Management.Hosted.HuntGroup.Models.TimeoutAction>] [-TimeoutActionTarget <System.Guid>] [-TimeoutThreshold <Int16>]
20-
[-RoutingMethod <Microsoft.Rtc.Management.Hosted.HuntGroup.Models.RoutingMethod>] [<CommonParameters>]
16+
New-CsCallQueue -Name <String> [-AgentAlertTime <Int16>] [-AllowOptOut <Boolean>] [-DistributionLists <List>]
17+
[-Tenant <Guid>] [-UseDefaultMusicOnHold <Boolean>] [-WelcomeMusicAudioFileId <Guid>] [-MusicOnHoldAudioFileId <Guid>]
18+
[-OverflowAction <Object>] [-OverflowActionTarget <Guid>] [-OverflowThreshold <Int16>]
19+
[-TimeoutAction <Object>] [-TimeoutActionTarget <Guid>] [-TimeoutThreshold <Int16>]
20+
[-RoutingMethod <Object>] [<CommonParameters>]
2121
```
2222

2323
## DESCRIPTION
2424
The New-CsCallQueue cmdlet creates a new Call Queue.
2525

26-
MusicOnHoldAudioFileId must be provided or set UseDefaultMusicOnHold to true.
27-
28-
The New-CsCallQueue cmdlet may suggest additional steps required to complete the Call Queue setup.
29-
3026
## EXAMPLES
3127

3228
### -------------------------- Example 1 --------------------------
3329
```
34-
New-CsCallQueue -Name "Help Desk" -Domain "litwareinc.com" -UseDefaultMusicOnHold $true
30+
New-CsCallQueue -Name "Help Desk" -UseDefaultMusicOnHold $true
3531
```
3632

3733
This example creates a Call Queue for the organization named "Help Desk" using default music on hold.
@@ -42,7 +38,7 @@ New-CsCallQueue -Name "Help desk" -RoutingMethod Attendant -DistributionLists @(
4238
4339
```
4440

45-
This example creates a Call Queue for the organization named "Help Desk" in the domain "litwareinc.com" using existing music on hold and welcome music files and other configurable parameters.
41+
This example creates a Call Queue for the organization named "Help Desk" and uses default music on hold files
4642

4743

4844
## PARAMETERS

skype/skype-ps/skype/Remove-CsCallQueue.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ The Remove-CsCallQueue cmdlet deletes an existing Call Queue.
1313
## SYNTAX
1414

1515
```
16-
Remove-CsCallQueue -Identity <System.Guid> [-AsJob] [-BypassDualWrite <System.Boolean>] [-Confirm]
17-
[-DomainController <Object>] [-Force] [-Tenant <System.Guid>] [-WhatIf] [<CommonParameters>]
16+
Remove-CsCallQueue -Identity <Guid> [-AsJob] [-BypassDualWrite <Boolean>] [-Confirm]
17+
[-DomainController <Object>] [-Force] [-Tenant <Guid>] [-WhatIf] [<CommonParameters>]
1818
```
1919

2020
## DESCRIPTION
21-
The Remove-CsCallQueue cmdlet deletes an existing Call Queue specified by the Identity parameter.
21+
The Remove-CsCallQueue cmdlet deletes an existing Call Queue specified by the Identity parameter. The removal will fail if there are any ApplicationInstances still associated with the Call Queue.
2222

2323
## EXAMPLES
2424

skype/skype-ps/skype/Set-CsCallQueue.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ Updates a Call Queue in your Skype for Business Online organization.
1616
## SYNTAX
1717

1818
```
19-
Set-CsCallQueue -Identity <System.Identity> [-AgentAlertTime <Int16>] [-AllowOptOut <System.Boolean>] [-DistributionLists <System.Collections.Generic.List`1[System.Guid]>]
20-
[-MusicOnHoldAudioFileId <System.Guid>] [-Name <System.String>] [-OverflowAction <Microsoft.Rtc.Management.Hosted.HuntGroup.Models.OverflowAction>] [-OverflowActionTarget <System.Uri>]
21-
[-OverflowThreshold <Int16>] [-RoutingMethod <Microsoft.Rtc.Management.Hosted.HuntGroup.Models.RoutingMethod>] [-TimeoutAction <Microsoft.Rtc.Management.Hosted.HuntGroup.Models.TimeoutAction>]
22-
[-TimeoutActionTarget <System.Uri>] [-TimeoutThreshold <Int16>] [-UseDefaultMusicOnHold <System.Boolean>] [-WelcomeMusicAudioFileId <System.Guid>] [<CommonParameters>]
19+
Set-CsCallQueue -Identity <Guid> [-AgentAlertTime <Int16>] [-AllowOptOut <Boolean>] [-DistributionLists <List>]
20+
[-MusicOnHoldAudioFileId <Guid>] [-Name <String>] [-OverflowAction <Object>] [-OverflowActionTarget <Guid>]
21+
[-OverflowThreshold <Int16>] [-RoutingMethod <Object>] [-TimeoutAction <Object>]
22+
[-TimeoutActionTarget <Guid>] [-TimeoutThreshold <Int16>] [-UseDefaultMusicOnHold <Boolean>] [-WelcomeMusicAudioFileId <Guid>] [<CommonParameters>]
2323
```
2424

2525
## DESCRIPTION

0 commit comments

Comments
 (0)