Skip to content

Commit 453f1bb

Browse files
authored
Update Get-CsPersonalAttendantSettings.md
1 parent 5f09e4e commit 453f1bb

File tree

1 file changed

+75
-0
lines changed

1 file changed

+75
-0
lines changed

teams/teams-ps/MicrosoftTeams/Get-CsPersonalAttendantSettings.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,21 @@ Personal attendant is only enabled for inbound Teams calls from the user's domai
5858
```
5959
Get-CsPersonalAttendantSettings -Identity [email protected]
6060
```
61+
```output
62+
IsPersonalAttendantEnabled : True
63+
DefaultLanguage : en-US
64+
DefaultVoice : Female
65+
CalleeName : User1
66+
DefaultTone : Formal
67+
IsBookingCalendarEnabled : True
68+
IsNonContactCallbackEnabled : False
69+
IsCallScreeningEnabled : False
70+
AllowInboundInternalCalls : True
71+
AllowInboundFederatedCalls : False
72+
AllowInboundPSTNCalls : False
73+
IsAutomaticTranscriptionEnabled : False
74+
IsAutomaticRecordingEnabled : False
75+
```
6176

6277
This example shows that [email protected] has personal attendant enabled. In addition to previously mentioned capabilities, personal attendant is able to access personal bookings calendar,
6378
fetch the user's availability and schedule callbacks on behalf of the user. Calendar operations are enabled for all incoming callers. user1 must specify the bookings link in Teams Personal Attendant settings.
@@ -66,27 +81,87 @@ fetch the user's availability and schedule callbacks on behalf of the user. Cale
6681
```
6782
Get-CsPersonalAttendantSettings -Identity [email protected]
6883
```
84+
```output
85+
IsPersonalAttendantEnabled : True
86+
DefaultLanguage : en-US
87+
DefaultVoice : Female
88+
CalleeName : User1
89+
DefaultTone : Formal
90+
IsBookingCalendarEnabled : True
91+
IsNonContactCallbackEnabled : True
92+
IsCallScreeningEnabled : False
93+
AllowInboundInternalCalls : True
94+
AllowInboundFederatedCalls : True
95+
AllowInboundPSTNCalls : True
96+
IsAutomaticTranscriptionEnabled : False
97+
IsAutomaticRecordingEnabled : False
98+
```
6999

70100
This example shows that [email protected] has personal attendant enabled. In addition to previously mentioned capabilities, personal attendant is enabled for all incoming calls: the user's domain, other domains and PSTN.
71101

72102
### Example 4
73103
```
74104
Get-CsPersonalAttendantSettings -Identity [email protected]
75105
```
106+
```output
107+
IsPersonalAttendantEnabled : True
108+
DefaultLanguage : en-US
109+
DefaultVoice : Female
110+
CalleeName : User1
111+
DefaultTone : Formal
112+
IsBookingCalendarEnabled : True
113+
IsNonContactCallbackEnabled : True
114+
IsCallScreeningEnabled : True
115+
AllowInboundInternalCalls : True
116+
AllowInboundFederatedCalls : True
117+
AllowInboundPSTNCalls : True
118+
IsAutomaticTranscriptionEnabled : False
119+
IsAutomaticRecordingEnabled : False
120+
```
76121

77122
This example shows that [email protected] has personal attendant enabled. In addition to previously mentioned capabilities, personal attendant is enabled to evaluate the call's context and pass the info to the user.
78123

79124
### Example 5
80125
```
81126
Get-CsPersonalAttendantSettings -Identity [email protected]
82127
```
128+
```output
129+
IsPersonalAttendantEnabled : True
130+
DefaultLanguage : en-US
131+
DefaultVoice : Female
132+
CalleeName : User1
133+
DefaultTone : Formal
134+
IsBookingCalendarEnabled : True
135+
IsNonContactCallbackEnabled : True
136+
IsCallScreeningEnabled : True
137+
AllowInboundInternalCalls : True
138+
AllowInboundFederatedCalls : True
139+
AllowInboundPSTNCalls : True
140+
IsAutomaticTranscriptionEnabled : True
141+
IsAutomaticRecordingEnabled : True
142+
```
83143

84144
This example shows that [email protected] has personal attendant enabled. In addition to previously mentioned capabilities, personal attendant is automatically storing call transcription and recording.
85145

86146
### Example 6
87147
```
88148
Get-CsPersonalAttendantSettings -Identity [email protected]
89149
```
150+
```output
151+
IsPersonalAttendantEnabled : False
152+
DefaultLanguage : en-US
153+
DefaultVoice : Female
154+
CalleeName :
155+
DefaultTone : Formal
156+
IsBookingCalendarEnabled : False
157+
IsNonContactCallbackEnabled : False
158+
IsCallScreeningEnabled : True
159+
AllowInboundInternalCalls : True
160+
AllowInboundFederatedCalls : True
161+
AllowInboundPSTNCalls : True
162+
IsAutomaticTranscriptionEnabled : True
163+
IsAutomaticRecordingEnabled : True
164+
```
90165

91166
This example shows the default settings for the user that has never changed the personal attendant settings via Microsoft Teams.
92167

0 commit comments

Comments
 (0)