Skip to content

Commit 9eba564

Browse files
authored
Create Get-CsPersonalAttendantSettings.md
1 parent 41405d1 commit 9eba564

File tree

1 file changed

+201
-0
lines changed

1 file changed

+201
-0
lines changed
Lines changed: 201 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,201 @@
1+
---
2+
applicable: Microsoft Teams
3+
author: juliiva
4+
external help file: Microsoft.Rtc.Management.dll-Help.xml
5+
Locale: en-US
6+
manager: jomarque
7+
Module Name: MicrosoftTeams
8+
ms.author: juliiva
9+
online version: https://learn.microsoft.com/powershell/module/microsoftteams/get-cspersonalattendantsettings
10+
schema: 2.0.0
11+
title: Get-CsPersonalAttendantSettings
12+
---
13+
14+
# Get-CsPersonalAttendantSettings
15+
16+
## SYNOPSIS
17+
18+
**Limited Preview:** Functionality described in this document is currently in limited preview and only authorized organizations have access.
19+
20+
This cmdlet will show personal attendant settings for a user.
21+
22+
## SYNTAX
23+
24+
```
25+
Get-CsPersonalAttendantSettings -Identity <String> [<CommonParameters>]
26+
27+
```
28+
29+
## DESCRIPTION
30+
31+
This cmdlet shows the personal attendant settings for a user.
32+
33+
## EXAMPLES
34+
35+
### Example 1
36+
```
37+
Get-CsPersonalAttendantSettings -Identity [email protected]
38+
```
39+
```output
40+
IsPersonalAttendantEnabled : True
41+
DefaultLanguage : en-US
42+
DefaultVoice : Female
43+
CalleeName : User1
44+
DefaultTone : Formal
45+
IsBookingCalendarEnabled : False
46+
IsNonContactCallbackEnabled : False
47+
IsCallScreeningEnabled : False
48+
AllowInboundInternalCalls : True
49+
AllowInboundFederatedCalls : False
50+
AllowInboundPSTNCalls : False
51+
IsAutomaticTranscriptionEnabled : False
52+
IsAutomaticRecordingEnabled : False
53+
```
54+
55+
This example shows that [email protected] has personal attendant enabled (personal attendant communicates in English). Personal attendant will refer to its owner as User1.
56+
Personal attendant is only enabled for inbound Teams calls from the user's domain. Additional capabilities are turned off.
57+
58+
### Example 2
59+
```
60+
Get-CsPersonalAttendantSettings -Identity [email protected]
61+
```
62+
```output
63+
IsPersonalAttendantEnabled : True
64+
DefaultLanguage : en-US
65+
DefaultVoice : Female
66+
CalleeName : User1
67+
DefaultTone : Formal
68+
IsBookingCalendarEnabled : True
69+
IsNonContactCallbackEnabled : False
70+
IsCallScreeningEnabled : False
71+
AllowInboundInternalCalls : True
72+
AllowInboundFederatedCalls : False
73+
AllowInboundPSTNCalls : False
74+
IsAutomaticTranscriptionEnabled : False
75+
IsAutomaticRecordingEnabled : False
76+
```
77+
78+
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,
79+
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.
80+
81+
### Example 3
82+
```
83+
Get-CsPersonalAttendantSettings -Identity [email protected]
84+
```
85+
```output
86+
IsPersonalAttendantEnabled : True
87+
DefaultLanguage : en-US
88+
DefaultVoice : Female
89+
CalleeName : User1
90+
DefaultTone : Formal
91+
IsBookingCalendarEnabled : True
92+
IsNonContactCallbackEnabled : True
93+
IsCallScreeningEnabled : False
94+
AllowInboundInternalCalls : True
95+
AllowInboundFederatedCalls : True
96+
AllowInboundPSTNCalls : True
97+
IsAutomaticTranscriptionEnabled : False
98+
IsAutomaticRecordingEnabled : False
99+
```
100+
101+
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.
102+
103+
### Example 4
104+
```
105+
Get-CsPersonalAttendantSettings -Identity [email protected]
106+
```
107+
```output
108+
IsPersonalAttendantEnabled : True
109+
DefaultLanguage : en-US
110+
DefaultVoice : Female
111+
CalleeName : User1
112+
DefaultTone : Formal
113+
IsBookingCalendarEnabled : True
114+
IsNonContactCallbackEnabled : True
115+
IsCallScreeningEnabled : True
116+
AllowInboundInternalCalls : True
117+
AllowInboundFederatedCalls : True
118+
AllowInboundPSTNCalls : True
119+
IsAutomaticTranscriptionEnabled : False
120+
IsAutomaticRecordingEnabled : False
121+
```
122+
123+
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.
124+
125+
### Example 5
126+
```
127+
Get-CsPersonalAttendantSettings -Identity [email protected]
128+
```
129+
```output
130+
IsPersonalAttendantEnabled : True
131+
DefaultLanguage : en-US
132+
DefaultVoice : Female
133+
CalleeName : User1
134+
DefaultTone : Formal
135+
IsBookingCalendarEnabled : True
136+
IsNonContactCallbackEnabled : True
137+
IsCallScreeningEnabled : True
138+
AllowInboundInternalCalls : True
139+
AllowInboundFederatedCalls : True
140+
AllowInboundPSTNCalls : True
141+
IsAutomaticTranscriptionEnabled : True
142+
IsAutomaticRecordingEnabled : True
143+
```
144+
145+
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.
146+
147+
### Example 6
148+
```
149+
Get-CsPersonalAttendantSettings -Identity [email protected]
150+
```
151+
```output
152+
IsPersonalAttendantEnabled : False
153+
DefaultLanguage : en-US
154+
DefaultVoice : Female
155+
CalleeName :
156+
DefaultTone : Formal
157+
IsBookingCalendarEnabled : False
158+
IsNonContactCallbackEnabled : False
159+
IsCallScreeningEnabled : True
160+
AllowInboundInternalCalls : True
161+
AllowInboundFederatedCalls : True
162+
AllowInboundPSTNCalls : True
163+
IsAutomaticTranscriptionEnabled : True
164+
IsAutomaticRecordingEnabled : True
165+
```
166+
167+
This example shows the default settings for the user that has never changed the personal attendant settings via Microsoft Teams.
168+
169+
## PARAMETERS
170+
171+
### -Identity
172+
The Identity of the user to show personal attendant settings for. Can be specified using the ObjectId or the SIP address.
173+
174+
```yaml
175+
Type: System.String
176+
Parameter Sets: (All)
177+
Aliases:
178+
179+
Required: True
180+
Default value: None
181+
Accept pipeline input: False
182+
Accept wildcard characters: False
183+
```
184+
185+
### CommonParameters
186+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
187+
188+
## INPUTS
189+
190+
### None
191+
192+
## OUTPUTS
193+
194+
### System.Object
195+
196+
## NOTES
197+
The cmdlet is available in Teams PowerShell module 7.3.0 or later.
198+
199+
## RELATED LINKS
200+
201+
[Set-CsPersonalAttendantSettings](./set-cspersonalattendantsettings.md)

0 commit comments

Comments
 (0)