Skip to content

Commit 75fb689

Browse files
committed
upper cased call queues + set name parameter to optional for set + updated type for distributionlists parameter
1 parent 1f1807a commit 75fb689

File tree

4 files changed

+43
-43
lines changed

4 files changed

+43
-43
lines changed

skype/skype-ps/skype/Get-CsHuntGroup.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Get-CsHuntGroup
99

1010
## SYNOPSIS
11-
The Get-CsHuntGroup cmdlet returns the identified call queues.
11+
The Get-CsHuntGroup cmdlet returns the identified Call Queues.
1212

1313
## SYNTAX
1414

@@ -17,11 +17,11 @@ Get-CsHuntGroup [-PrimaryUri <System.Uri>] [<CommonParameters>]
1717
```
1818

1919
## DESCRIPTION
20-
The Get-CsHuntGroup 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.
20+
The Get-CsHuntGroup 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.
2121

22-
If called without parameters, Get-CsHuntgroup returns a collection of all call queues configured to be used in your organization.
22+
If called without parameters, Get-CsHuntgroup returns a collection of all Call Queues configured to be used in your organization.
2323

24-
The Get-CsHuntGroup cmdlet may suggest additional steps required to complete the call queue setup.
24+
The Get-CsHuntGroup cmdlet may suggest additional steps required to complete the Call Queue setup.
2525

2626
## EXAMPLES
2727

@@ -30,20 +30,20 @@ The Get-CsHuntGroup cmdlet may suggest additional steps required to complete the
3030
Get-CsHuntGroup
3131
```
3232

33-
This example gets all call queues in the organization.
33+
This example gets all Call Queues in the organization.
3434

3535
### -------------------------- Example 2 --------------------------
3636
```
3737
Get-CsHuntGroup -PrimaryUri "sip:[email protected]"
3838
```
3939

40-
This example gets the call queue with the primary uri "sip:hg_a82e2406b9b5474a9878e9659f32dbc3@litwareinc.com". If no call queue exists with the primary uri "sip:hg_a82e2406b9b5474a9878e9659f32dbc3@litwareinc.com", then this example generates an error.
40+
This example gets the Call Queue with the primary uri "sip:hg_a82e2406b9b5474a9878e9659f32dbc3@litwareinc.com". If no Call Queue exists with the primary uri "sip:hg_a82e2406b9b5474a9878e9659f32dbc3@litwareinc.com", then this example generates an error.
4141

4242

4343
## PARAMETERS
4444

4545
### -PrimaryUri
46-
The PrimaryUri parameter represents the SIP address for the call queue. It must start with "sip:".
46+
The PrimaryUri parameter represents the SIP address for the Call Queue. It must start with "sip:".
4747

4848
```yaml
4949
Type: System.Uri

skype/skype-ps/skype/New-CsHuntGroup.md

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

1515
```
16-
New-CsHuntGroup -Domain <System.String> -Name <System.String> [-AgentAlertTime <Int16>] [-AllowOptOut <System.Boolean>] [-DistributionLists <System.Collections>]
16+
New-CsHuntGroup -Domain <System.String> -Name <System.String> [-AgentAlertTime <Int16>] [-AllowOptOut <System.Boolean>] [-DistributionLists <System.Collections.Generic.List`1[System.Guid]>]
1717
[-LineUri <System.Uri>] [-MusicOnHoldFileContent <System.Byte[]>] [-MusicOnHoldFileName <System.String>] [-OverflowAction <Microsoft.Rtc.Management.Hosted.HuntGroup.Models.OverflowAction>]
1818
[-OverflowActionTarget <System.Uri>] [-OverflowThreshold <Int16>] [-RoutingMethod <Microsoft.Rtc.Management.Hosted.HuntGroup.Models.RoutingMethod>] [-TimeoutAction <Microsoft.Rtc.Management.Hosted.HuntGroup.Models.TimeoutAction>] [-TimeoutActionTarget <System.Uri>] [-TimeoutThreshold <Int16>] [-UseDefaultMusicOnHold <System.Boolean>]
1919
[-WelcomeMusicFileContent <System.Byte[]>] [-WelcomeMusicFileName <System.String>] [<CommonParameters>]
@@ -26,7 +26,7 @@ Note, you need to specify UseDefaultMusicOnHold $True (default is none), or prov
2626

2727
MusicOnHoldFileName and MusicOnHoldFileContent cannot be empty so you must specify a valid MusicOnHoldFileName and MusicOnHoldFileContent or set UseDefaultMusicOnHold to true.
2828

29-
The New-CsHuntGroup cmdlet may suggest additional steps required to complete the call queue setup.
29+
The New-CsHuntGroup cmdlet may suggest additional steps required to complete the Call Queue setup.
3030

3131
The following parameters are not applicable to Skype for Business Online: AsJob, ClientAudience, DomainController, Force, HuntGroupServiceCallbackUri, PipelineVariable, and Ring.
3232

@@ -38,7 +38,7 @@ The following parameters are not applicable to Skype for Business Online: AsJob,
3838
New-CsHuntGroup -Name "Help Desk" -Domain "litwareinc.com" -UseDefaultMusicOnHold $true
3939
```
4040

41-
This example creates a call queue for the organization named "Help Desk" in the domain "litwareinc.com" using default music on hold.
41+
This example creates a Call Queue for the organization named "Help Desk" in the domain "litwareinc.com" using default music on hold.
4242

4343
### -------------------------- Example 2 --------------------------
4444
```
@@ -47,13 +47,13 @@ $welcomeMusicContent = Get-Content ".\WelcomeMusic.wav" -ReadCount 0 -Encoding B
4747
New-CsHuntGroup -Name "Help desk" -Domain "litwareinc.com" -LineUri "tel:+19998881234" -RoutingMethod Attendant -DistributionLists @("8521b0e3-51bd-4a4b-a8d6-b219a77a0a6a", "868dccd8-d723-4b4f-8d74-ab59e207c357") -AllowOptOut $false -AgentAlertTime 30 -OverflowThreshold 15 -OverflowAction Forward -OverflowActionTarget "sip:[email protected]" -TimeoutThreshold 30 -TimeoutAction Disconnect -MusicOnHoldFileName "MusicOnHold.wav" -MusicOnHoldFileContent $musicOnHoldContent -WelcomeMusicFileName "WelcomeMusic.wav"
4848
```
4949

50-
This example saves the contents of music on hold and welcome music files in temporary variables. Then, it creates a call queue for the organization named "Help Desk" in the domain "litwareinc.com" using those contents and other configurable parameters.
50+
This example saves the contents of music on hold and welcome music files in temporary variables. Then, it creates a Call Queue for the organization named "Help Desk" in the domain "litwareinc.com" using those contents and other configurable parameters.
5151

5252

5353
## PARAMETERS
5454

5555
### -Domain
56-
The Domain parameter denotes the domain part of the primary uri for the call queue. This domain name is validated against the list of domains that the tenant owns.
56+
The Domain parameter denotes the domain part of the primary uri for the Call Queue. This domain name is validated against the list of domains that the tenant owns.
5757

5858
```yaml
5959
Type: System.String
@@ -69,7 +69,7 @@ Accept wildcard characters: False
6969
```
7070
7171
### -Name
72-
The Name parameter specifies a unique name for the call queue.
72+
The Name parameter specifies a unique name for the Call Queue.
7373
7474
```yaml
7575
Type: System.String
@@ -101,7 +101,7 @@ Accept wildcard characters: False
101101
```
102102
103103
### -AllowOptOut
104-
The AllowOptOut parameter indicates whether or not agents can opt in or opt out from taking calls from a call queue.
104+
The AllowOptOut parameter indicates whether or not agents can opt in or opt out from taking calls from a Call Queue.
105105
106106
```yaml
107107
Type: System.Boolean
@@ -117,10 +117,10 @@ Accept wildcard characters: False
117117
```
118118
119119
### -DistributionLists
120-
The DistributionLists parameter lets you add all the members of the distribution lists to the call queue. This is a list of distribution list GUIDs. A service wide configurable maximum number of DLs per call queue are allowed. Only the first N (service wide configurable) agents from all distribution lists combined are considered for accepting the call. Nested DLs are supported. O365 Groups can also be used to add members to the call queue.
120+
The DistributionLists parameter lets you add all the members of the distribution lists to the Call Queue. This is a list of distribution list GUIDs. A service wide configurable maximum number of DLs per Call Queue are allowed. Only the first N (service wide configurable) agents from all distribution lists combined are considered for accepting the call. Nested DLs are supported. O365 Groups can also be used to add members to the Call Queue.
121121
122122
```yaml
123-
Type: System.Collections
123+
Type: System.Collections.Generic.List`1[System.Guid]
124124
Parameter Sets: (All)
125125
Aliases:
126126
Applicable: Skype for Business Online
@@ -133,7 +133,7 @@ Accept wildcard characters: False
133133
```
134134
135135
### -LineUri
136-
The LineUri parameter is the phone number for the call queue. The line Uniform Resource Identifier (URI) must be specified by using the following format: the tel: prefix followed by a plus sign, followed by the country/region calling code, area code, and phone number (using only digits: no blank spaces, periods, or hyphens). For example: -LineUri "tel:+14255551219".
136+
The LineUri parameter is the phone number for the Call Queue. The line Uniform Resource Identifier (URI) must be specified by using the following format: the tel: prefix followed by a plus sign, followed by the country/region calling code, area code, and phone number (using only digits: no blank spaces, periods, or hyphens). For example: -LineUri "tel:+14255551219".
137137
138138
```yaml
139139
Type: System.Uri
@@ -231,7 +231,7 @@ Accept wildcard characters: False
231231
```
232232
233233
### -RoutingMethod
234-
The RoutingMethod defines how agents will be called in a call queue. If the routing method is set to Serial, then agents will be called one at a time. If the routing method is set to Attendant, then agents will be called in parallel.
234+
The RoutingMethod defines how agents will be called in a Call Queue. If the routing method is set to Serial, then agents will be called one at a time. If the routing method is set to Attendant, then agents will be called in parallel.
235235
236236
PARAMVALUE: Attendant | Serial
237237
@@ -300,7 +300,7 @@ Accept wildcard characters: False
300300
```
301301
302302
### -UseDefaultMusicOnHold
303-
The UseDefaultMusicOnHold parameter indicates that this call queue uses the default music on hold. This parameter cannot be specified together with MusicOnHoldFileName and MusicOnHoldFileContent.
303+
The UseDefaultMusicOnHold parameter indicates that this Call Queue uses the default music on hold. This parameter cannot be specified together with MusicOnHoldFileName and MusicOnHoldFileContent.
304304
305305
```yaml
306306
Type: System.Boolean
@@ -316,7 +316,7 @@ Accept wildcard characters: False
316316
```
317317
318318
### -WelcomeMusicFileContent
319-
The WelcomeMusicFileContent parameter represents the audio file to play when callers are connected with the call queue. This is the content of the audio file. Supported formats are: .wav, .mp3, .and wma.
319+
The WelcomeMusicFileContent parameter represents the audio file to play when callers are connected with the Call Queue. This is the content of the audio file. Supported formats are: .wav, .mp3, .and wma.
320320
321321
```yaml
322322
Type: System.Byte[]
@@ -332,7 +332,7 @@ Accept wildcard characters: False
332332
```
333333
334334
### -WelcomeMusicFileName
335-
The WelcomeMusicFileName parameter represents audio file to play when callers are connected with the call queue. This is the name to the audio file. Supported formats are: .wav, .mp3, and .wma.
335+
The WelcomeMusicFileName parameter represents audio file to play when callers are connected with the Call Queue. This is the name to the audio file. Supported formats are: .wav, .mp3, and .wma.
336336
337337
```yaml
338338
Type: System.String
@@ -489,4 +489,4 @@ This cmdlet supports the common parameters: `-Debug, -ErrorAction, -ErrorVariabl
489489
## NOTES
490490

491491
## RELATED LINKS
492-
[Create a Phone System call queue](https://support.office.com/en-us/article/Create-a-Phone-System-call-queue-67ccda94-1210-43fb-a25b-7b9785f8a061)
492+
[Create a Phone System Call Queue](https://support.office.com/en-us/article/Create-a-Phone-System-call-queue-67ccda94-1210-43fb-a25b-7b9785f8a061)

skype/skype-ps/skype/Remove-CsHuntGroup.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Remove-CsHuntGroup
99

1010
## SYNOPSIS
11-
The Remove-CsHuntGroup cmdlet deletes an existing call queue.
11+
The Remove-CsHuntGroup cmdlet deletes an existing Call Queue.
1212

1313
## SYNTAX
1414

@@ -17,9 +17,9 @@ Remove-CsHuntGroup -PrimaryUri <System.Uri> [<CommonParameters>]
1717
```
1818

1919
## DESCRIPTION
20-
The Remove-CsHuntGroup cmdlet deletes an existing call queue specified by the PrimaryUri parameter.
20+
The Remove-CsHuntGroup cmdlet deletes an existing Call Queue specified by the PrimaryUri parameter.
2121

22-
The Remove-CsHuntGroup cmdlet may suggest additional steps required to complete the call queue setup.
22+
The Remove-CsHuntGroup cmdlet may suggest additional steps required to complete the Call Queue setup.
2323

2424
## EXAMPLES
2525

@@ -28,15 +28,15 @@ The Remove-CsHuntGroup cmdlet may suggest additional steps required to complete
2828
Remove-CsHuntGroup -PrimaryUri "sip:[email protected]"
2929
```
3030

31-
This example deletes the call queue with the primary uri "sip:hg_a82e2406b9b5474a9878e9659f32dbc3@litwareinc.com".
31+
This example deletes the Call Queue with the primary uri "sip:hg_a82e2406b9b5474a9878e9659f32dbc3@litwareinc.com".
3232

3333

3434

3535

3636
## PARAMETERS
3737

3838
### -PrimaryUri
39-
The PrimaryUri parameter represents the SIP address for the call queue. It must start with "sip:".
39+
The PrimaryUri parameter represents the SIP address for the Call Queue. It must start with "sip:".
4040

4141
```yaml
4242
Type: System.Uri

0 commit comments

Comments
 (0)