Skip to content

Commit 23fda50

Browse files
authored
Merge pull request MicrosoftDocs#3473 from dariomws306/patch-8
Update New-CsAutoAttendantCallHandlingAssociation.md
2 parents 633aefa + 380263c commit 23fda50

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

skype/skype-ps/skype/New-CsAutoAttendantCallHandlingAssociation.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.reviewer:
1111
# New-CsAutoAttendantCallHandlingAssociation
1212

1313
## SYNOPSIS
14-
Use the New-CsAutoAttendantCallHandlingAssociation cmdlet to create a new call handling association.
14+
Use the `New-CsAutoAttendantCallHandlingAssociation` cmdlet to create a new call handling association.
1515

1616
## SYNTAX
1717

@@ -20,14 +20,14 @@ New-CsAutoAttendantCallHandlingAssociation -CallFlowId <String> -ScheduleId <Str
2020
```
2121

2222
## DESCRIPTION
23-
The New-CsAutoAttendantCallHandlingAssociation cmdlet creates a new call handling association to be used with the Auto Attendant (AA) service. The OAA service uses call handling associations to determine which call flow to execute when a specific schedule is in effect.
23+
The `New-CsAutoAttendantCallHandlingAssociation` cmdlet creates a new call handling association to be used with the Auto Attendant (AA) service. The OAA service uses call handling associations to determine which call flow to execute when a specific schedule is in effect.
2424

2525
## EXAMPLES
2626

2727
### -------------------------- Example 1 --------------------------
2828
```powershell
2929
$tr = New-CsOnlineTimeRange -Start 09:00 -End 17:00
30-
$schedule = New-CsOnlineSchedule -Name "Business Hours" -WeeklyRecurrentSchedule -MondayHours @($tr)
30+
$schedule = New-CsOnlineSchedule -Name "Business Hours" -WeeklyRecurrentSchedule -MondayHours @($tr) -TuesdayHours @($tr) -WednesdayHours @($tr) -ThursdayHours @($tr) -FridayHours @($tr)
3131
$scheduleId = $schedule.Id
3232
3333
$menuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "To reach your party by name, enter it now, followed by the pound sign."
@@ -38,7 +38,7 @@ $callFlowId = $callFlow.Id
3838
$callHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type AfterHours -ScheduleId $scheduleId -CallFlowId $callFlowId
3939
```
4040

41-
This example creates the following
41+
This example creates the following:
4242

4343
- a new after-hours schedule
4444
- a new after-hours call flow
@@ -47,7 +47,7 @@ This example creates the following
4747
### -------------------------- Example 2 --------------------------
4848
```powershell
4949
$tr = New-CsOnlineTimeRange -Start 09:00 -End 17:00
50-
$schedule = New-CsOnlineSchedule -Name "Business Hours" -WeeklyRecurrentSchedule -MondayHours @($tr)
50+
$schedule = New-CsOnlineSchedule -Name "Business Hours" -WeeklyRecurrentSchedule -MondayHours @($tr) -TuesdayHours @($tr) -WednesdayHours @($tr) -ThursdayHours @($tr) -FridayHours @($tr)
5151
$scheduleId = $schedule.Id
5252
5353
$menuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "To reach your party by name, enter it now, followed by the pound sign."
@@ -58,7 +58,7 @@ $callFlowId = $callFlow.Id
5858
$disabledCallHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type AfterHours -ScheduleId $scheduleId -CallFlowId $callFlowId -Disable
5959
```
6060

61-
This example creates the following
61+
This example creates the following:
6262

6363
- a new after-hours schedule
6464
- a new after-hours call flow
@@ -79,7 +79,7 @@ $callFlowId = $callFlow.Id
7979
$callHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type Holiday -ScheduleId $scheduleId -CallFlowId $callFlowId
8080
```
8181

82-
This example creates the following
82+
This example creates the following:
8383

8484
- a new holiday schedule
8585
- a new holiday call flow
@@ -94,7 +94,7 @@ You can create a call flow by using the [`New-CsAutoAttendantCallFlow`](New-CsAu
9494

9595

9696
```yaml
97-
Type: System.String
97+
Type: String
9898
Parameter Sets: (All)
9999
Aliases:
100100
Applicable: Skype for Business Online
@@ -162,9 +162,18 @@ Accept wildcard characters: False
162162
```
163163

164164
### -Tenant
165+
Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example:
166+
167+
-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"
168+
169+
You can return your tenant ID by running this command:
170+
171+
Get-CsTenant | Select-Object DisplayName, TenantID
172+
173+
If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment.
165174

166175
```yaml
167-
Type: System.Guid
176+
Type: Guid
168177
Parameter Sets: (All)
169178
Aliases:
170179
Applicable: Skype for Business Online

0 commit comments

Comments
 (0)