Skip to content

Commit f26d851

Browse files
authored
Update New-CsAutoAttendant.md
1 parent e7a9365 commit f26d851

1 file changed

Lines changed: 25 additions & 24 deletions

File tree

teams/teams-ps/MicrosoftTeams/New-CsAutoAttendant.md

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ You can create new AAs by using the New-CsAutoAttendant cmdlet; each newly creat
4646
4747
**NOTES**:
4848

49-
- To setup your AA for calling, you need to create an application instance first using `New-CsOnlineApplicationInstance` cmdlet , then associate it with your AA configuration using `New-CsOnlineApplicationInstanceAssociation` cmdlet.
49+
- To setup your AA for calling, you need to create an application instance first using [New-CsOnlineApplicationInstance](new-csonlineapplicationinstance.md) cmdlet , then associate it with your AA configuration using [New-CsOnlineApplicationInstanceAssociation](new-csonlineapplicationinstanceassociation.md) cmdlet.
5050
- The default call flow has the lowest precedence, and any custom call flow has a higher precedence and is executed if the schedule associated with it is in effect.
5151
- Holiday call flows have higher priority than after-hours call flows. Thus, if a holiday schedule and an after-hours schedule are both in effect at a particular time, the call flow corresponding to the holiday call flow will be rendered.
5252
- The default call flow can be used either as the 24/7 call flow if no other call flows are specified, or as the business hours call flow if an "after hours" call flow was specified together with the corresponding schedule and call handling association.
@@ -216,11 +216,11 @@ Get-CsOnlineSchedule $christmasSchedule.Id
216216
# AssociatedConfigurationIds : a65b3434-05a1-48ed-883d-e3ca35a60af8, 236450c4-9f1e-4c19-80eb-d68819d36a15
217217
```
218218

219-
This example creates two new AAs named _Main auto attendant_ and _Customer Support Auto Attendant_. Both AAs share the same Christmas holiday schedule. This was done by reusing the Schedule ID of the _Christmas_ holiday when creating the call handling associations for those two AAs using New-CsAutoAttendantCallHandlingAssociation cmdlet.
219+
This example creates two new AAs named _Main auto attendant_ and _Customer Support Auto Attendant_. Both AAs share the same Christmas holiday schedule. This was done by reusing the Schedule ID of the _Christmas_ holiday when creating the call handling associations for those two AAs using [New-CsAutoAttendantCallHandlingAssociation](new-csautoattendantcallhandlingassociation.md) cmdlet.
220220

221-
We can see when we ran the Get-CsOnlineSchedule cmdlet at the end, to get the _Christmas Holiday_ schedule information, that the configuration IDs for the newly created AAs have been added to the `AssociatedConfigurationIds` properties of that schedule. This means any updates made to this schedule would reflect in both associated AAs.
221+
We can see when we ran the [Get-CsOnlineSchedule](get-csonlineschedule.md) cmdlet at the end, to get the _Christmas Holiday_ schedule information, that the configuration IDs for the newly created AAs have been added to the `AssociatedConfigurationIds` properties of that schedule. This means any updates made to this schedule would reflect in both associated AAs.
222222

223-
Removing an association between an AA and a schedule is as simple as deleting the CallHandlingAssociation of that schedule in the AA you want to modify. Please refer to [Set-CsAutoAttendant](https://learn.microsoft.com/powershell/module/microsoftteams/set-csautoattendant) cmdlet documentation for examples on how to do that.
223+
Removing an association between an AA and a schedule is as simple as deleting the CallHandlingAssociation of that schedule in the AA you want to modify. Please refer to [Set-CsAutoAttendant](set-csautoattendant.md) cmdlet documentation for examples on how to do that.
224224

225225
### Example 4
226226
```powershell
@@ -291,7 +291,6 @@ Accept pipeline input: False
291291
Accept wildcard characters: False
292292
```
293293
294-
295294
### -AutoRecordingTemplateId
296295
297296
The Auto Recording template ID to apply to the Auto attendant.
@@ -316,7 +315,7 @@ Accept wildcard characters: False
316315
317316
The CallFlows parameter represents call flows, which are required if they are referenced in the CallHandlingAssociations parameter.
318317
319-
You can create CallFlows by using the [`New-CsAutoAttendantCallFlow`](https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallflow) cmdlet.
318+
You can create CallFlows by using the [New-CsAutoAttendantCallFlow](new-csautoattendantcallflow.md) cmdlet.
320319
321320
```yaml
322321
Type: System.Collections.Generic.List
@@ -335,7 +334,7 @@ Accept wildcard characters: False
335334
The CallHandlingAssociations parameter represents the call handling associations.
336335
The AA service uses call handling associations to determine which call flow to execute when a specific schedule is in effect.
337336
338-
You can create CallHandlingAssociations by using the `New-CsAutoAttendantCallHandlingAssociation` cmdlet.
337+
You can create CallHandlingAssociations by using the [New-CsAutoAttendantCallHandlingAssociation](new-csautoattendantcallhandlingassociation.md) cmdlet.
339338
340339
```yaml
341340
Type: System.Collections.Generic.List
@@ -353,7 +352,7 @@ Accept wildcard characters: False
353352
354353
The DefaultCallFlow parameter is the flow to be executed when no other call flow is in effect (for example, during business hours).
355354
356-
You can create the DefaultCallFlow by using the [`New-CsAutoAttendantCallFlow`](https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallflow) cmdlet.
355+
You can create the DefaultCallFlow by using the [New-CsAutoAttendantCallFlow](new-csautoattendantcallflow.md) cmdlet.
357356
358357
```yaml
359358
Type: Object
@@ -482,9 +481,9 @@ Accept wildcard characters: False
482481

483482
The LanguageId parameter is the language that is used to read text-to-speech (TTS) prompts.
484483

485-
For Mainline attendant, use [Get-CsMainlineAttendantSupportedLanguages](get-csmainlineattendantsupportedlanguages.md) to query the supported languages.
484+
See [Get-CsMainlineAttendantSupportedLanguages](get-csmainlineattendantsupportedlanguages.md) for a list of languages supported with Mainline attendant.
486485

487-
For Auto attendant, use [Get-CsAutoAttendantSupportedLanguage](https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendantsupportedlanguage) cmdlet.
486+
See [Get-CsAutoAttendantSupportedLanguage](get-csautoattendantsupportedlanguage) for a list of languages supported with Auto attendant.
488487

489488
```yaml
490489
Type: System.String
@@ -552,7 +551,7 @@ Accept wildcard characters: False
552551

553552
The TimeZoneId parameter represents the AA time zone. All schedules are evaluated based on this time zone.
554553

555-
Use [Get-CsAutoAttendantSupportedTimeZone](get-csautoattendantsupportedtimezone.md) to query the supported timezones.
554+
See [Get-CsAutoAttendantSupportedTimeZone](get-csautoattendantsupportedtimezone.md) for a list of supported time zones.
556555

557556
```yaml
558557
Type: System.String
@@ -596,7 +595,9 @@ Accept wildcard characters: False
596595

597596
The VoiceId parameter represents the voice that is used to read text-to-speech (TTS) prompts.
598597

599-
You can query the supported voices by using the [Get-CsAutoAttendantSupportedLanguage](get-csautoattendantsupportedlanguage.md] cmdlet.
598+
See [Get-CsMainlineAttendantSupportedVoices](get-csmainlineattendantsupportedvoices.md) for a list of voices supported with Mainline attendant.
599+
600+
See [Get-CsAutoAttendantSupportedLanguage](get-csautoattendantsupportedlanguage.md] for a list of voices supported with Auto attendant
600601

601602
```yaml
602603
Type: System.String
@@ -626,26 +627,26 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
626627

627628
## RELATED LINKS
628629

629-
[New-CsOnlineApplicationInstanceAssociation](https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineapplicationinstanceassociation)
630+
[New-CsOnlineApplicationInstanceAssociation](new-csonlineapplicationinstanceassociation.md)
630631

631-
[Get-CsAutoAttendant](https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendant)
632+
[Get-CsAutoAttendant](get-csautoattendant.md)
632633

633-
[Get-CsAutoAttendantStatus](https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendantstatus)
634+
[Get-CsAutoAttendantStatus](get-csautoattendantstatus.md)
634635

635-
[Get-CsAutoAttendantSupportedLanguage](https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendantsupportedlanguage)
636+
[Get-CsAutoAttendantSupportedLanguage](get-csautoattendantsupportedlanguage.md)
636637

637-
[Get-CsAutoAttendantSupportedTimeZone](https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendantsupportedtimezone)
638+
[Get-CsAutoAttendantSupportedTimeZone](get-csautoattendantsupportedtimezone.md)
638639

639-
[New-CsAutoAttendantCallableEntity](https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallableentity)
640+
[New-CsAutoAttendantCallableEntity](new-csautoattendantcallableentity.md)
640641

641-
[New-CsAutoAttendantCallFlow](https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallflow)
642+
[New-CsAutoAttendantCallFlow](new-csautoattendantcallflow.md)
642643

643-
[New-CsAutoAttendantCallHandlingAssociation](https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallhandlingassociation)
644+
[New-CsAutoAttendantCallHandlingAssociation](new-csautoattendantcallhandlingassociation.md)
644645

645-
[New-CsOnlineSchedule](https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineschedule)
646+
[New-CsOnlineSchedule](new-csonlineschedule.md)
646647

647-
[Remove-CsAutoAttendant](https://learn.microsoft.com/powershell/module/microsoftteams/remove-csautoattendant)
648+
[Remove-CsAutoAttendant](remove-csautoattendant.md)
648649

649-
[Set-CsAutoAttendant](https://learn.microsoft.com/powershell/module/microsoftteams/set-csautoattendant)
650+
[Set-CsAutoAttendant](set-csautoattendant.md)
650651

651-
[Update-CsAutoAttendant](https://learn.microsoft.com/powershell/module/microsoftteams/update-csautoattendant)
652+
[Update-CsAutoAttendant](update-csautoattendant.md)

0 commit comments

Comments
 (0)