|
| 1 | +--- |
| 2 | +external help file: Microsoft.Open.Teams.CommonLibrary.dll-Help.xml |
| 3 | +Module Name: MicrosoftTeams |
| 4 | +online version: https://learn.microsoft.com/powershell/module/teams/get-cspersonalattendantsettings |
| 5 | +applicable: Microsoft Teams |
| 6 | +title: Get-CsPersonalAttendantSettings |
| 7 | +schema: 2.0.0 |
| 8 | +author: juliiva |
| 9 | +ms.author: juliiva |
| 10 | +ms.reviewer: |
| 11 | +manager: jomarque |
| 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 | +```powershell |
| 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 | +```powershell |
| 37 | +Get-CsPersonalAttendantSettings -Identity user1@contoso.com |
| 38 | +``` |
| 39 | +```output |
| 40 | +IsPersonalAttendantEnabled : True |
| 41 | +DefaultLanguage : En |
| 42 | +DefaultVoice : Female |
| 43 | +CalleeName : User1 |
| 44 | +DefaultTone : Formal |
| 45 | +IsBookingCalendarEnabled : False |
| 46 | +BookingCalendarId : |
| 47 | +IsNonContactCallbackEnabled : False |
| 48 | +IsCallScreeningEnabled : False |
| 49 | +AllowInboundInternalCalls : True |
| 50 | +AllowInboundFederatedCalls : False |
| 51 | +AllowInboundPSTNCalls : False |
| 52 | +IsAutomaticTranscriptionEnabled : False |
| 53 | +IsAutomaticRecordingEnabled : False |
| 54 | +``` |
| 55 | + |
| 56 | +This example shows that user1@contoso.com has personal attendant enabled (personal attendant communicates in English). Personal attendant will refer to its owner as User1. |
| 57 | +Personal attendant is only enabled for inbound Teams calls from the user's domain. Additional capabilities are turned off. |
| 58 | + |
| 59 | +### Example 2 |
| 60 | +```powershell |
| 61 | +Get-CsPersonalAttendantSettings -Identity user1@contoso.com |
| 62 | +``` |
| 63 | +```output |
| 64 | +IsPersonalAttendantEnabled : True |
| 65 | +DefaultLanguage : En |
| 66 | +DefaultVoice : Female |
| 67 | +CalleeName : User1 |
| 68 | +DefaultTone : Formal |
| 69 | +IsBookingCalendarEnabled : True |
| 70 | +BookingCalendarId : user1@contoso.onmicrosoft.com |
| 71 | +IsNonContactCallbackEnabled : False |
| 72 | +IsCallScreeningEnabled : False |
| 73 | +AllowInboundInternalCalls : True |
| 74 | +AllowInboundFederatedCalls : False |
| 75 | +AllowInboundPSTNCalls : False |
| 76 | +IsAutomaticTranscriptionEnabled : False |
| 77 | +IsAutomaticRecordingEnabled : False |
| 78 | +``` |
| 79 | + |
| 80 | +This example shows that user1@contoso.com has personal attendant enabled. In addition to previously mentioned capabilities, personal attendant is able to access shared calendar with id user1@contoso.onmicrosoft.com, |
| 81 | +fetch the user's availability and schedule callbacks on behalf of the user. Calendar operations are enabled for all incoming callers. |
| 82 | + |
| 83 | +### Example 3 |
| 84 | +```powershell |
| 85 | +Get-CsPersonalAttendantSettings -Identity user1@contoso.com |
| 86 | +``` |
| 87 | +```output |
| 88 | +IsPersonalAttendantEnabled : True |
| 89 | +DefaultLanguage : En |
| 90 | +DefaultVoice : Female |
| 91 | +CalleeName : User1 |
| 92 | +DefaultTone : Formal |
| 93 | +IsBookingCalendarEnabled : True |
| 94 | +BookingCalendarId : user1@contoso.onmicrosoft.com |
| 95 | +IsNonContactCallbackEnabled : True |
| 96 | +IsCallScreeningEnabled : False |
| 97 | +AllowInboundInternalCalls : True |
| 98 | +AllowInboundFederatedCalls : True |
| 99 | +AllowInboundPSTNCalls : True |
| 100 | +IsAutomaticTranscriptionEnabled : False |
| 101 | +IsAutomaticRecordingEnabled : False |
| 102 | +``` |
| 103 | + |
| 104 | +This example shows that user1@contoso.com 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. |
| 105 | + |
| 106 | +### Example 4 |
| 107 | +```powershell |
| 108 | +Get-CsPersonalAttendantSettings -Identity user1@contoso.com |
| 109 | +``` |
| 110 | +```output |
| 111 | +IsPersonalAttendantEnabled : True |
| 112 | +DefaultLanguage : En |
| 113 | +DefaultVoice : Female |
| 114 | +CalleeName : User1 |
| 115 | +DefaultTone : Formal |
| 116 | +IsBookingCalendarEnabled : True |
| 117 | +BookingCalendarId : user1@contoso.onmicrosoft.com |
| 118 | +IsNonContactCallbackEnabled : True |
| 119 | +IsCallScreeningEnabled : True |
| 120 | +AllowInboundInternalCalls : True |
| 121 | +AllowInboundFederatedCalls : True |
| 122 | +AllowInboundPSTNCalls : True |
| 123 | +IsAutomaticTranscriptionEnabled : False |
| 124 | +IsAutomaticRecordingEnabled : False |
| 125 | +``` |
| 126 | + |
| 127 | +This example shows that user1@contoso.com 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. |
| 128 | + |
| 129 | +### Example 5 |
| 130 | +```powershell |
| 131 | +Get-CsPersonalAttendantSettings -Identity user1@contoso.com |
| 132 | +``` |
| 133 | +```output |
| 134 | +IsPersonalAttendantEnabled : True |
| 135 | +DefaultLanguage : En |
| 136 | +DefaultVoice : Female |
| 137 | +CalleeName : User1 |
| 138 | +DefaultTone : Formal |
| 139 | +IsBookingCalendarEnabled : True |
| 140 | +BookingCalendarId : user1@contoso.onmicrosoft.com |
| 141 | +IsNonContactCallbackEnabled : True |
| 142 | +IsCallScreeningEnabled : True |
| 143 | +AllowInboundInternalCalls : True |
| 144 | +AllowInboundFederatedCalls : True |
| 145 | +AllowInboundPSTNCalls : True |
| 146 | +IsAutomaticTranscriptionEnabled : True |
| 147 | +IsAutomaticRecordingEnabled : True |
| 148 | +``` |
| 149 | + |
| 150 | +This example shows that user1@contoso.com has personal attendant enabled. In addition to previously mentioned capabilities, personal attendant is automatically storing call transcription and recording. |
| 151 | + |
| 152 | +### Example 6 |
| 153 | +```powershell |
| 154 | +Get-CsPersonalAttendantSettings -Identity user11@contoso.com |
| 155 | +``` |
| 156 | +```output |
| 157 | +IsPersonalAttendantEnabled : False |
| 158 | +DefaultLanguage : En |
| 159 | +DefaultVoice : Female |
| 160 | +CalleeName : |
| 161 | +DefaultTone : Formal |
| 162 | +IsBookingCalendarEnabled : False |
| 163 | +BookingCalendarId : |
| 164 | +IsNonContactCallbackEnabled : False |
| 165 | +IsCallScreeningEnabled : True |
| 166 | +AllowInboundInternalCalls : True |
| 167 | +AllowInboundFederatedCalls : True |
| 168 | +AllowInboundPSTNCalls : True |
| 169 | +IsAutomaticTranscriptionEnabled : True |
| 170 | +IsAutomaticRecordingEnabled : True |
| 171 | +``` |
| 172 | + |
| 173 | +This example shows the default settings for the user that has never changed the personal attendant settings via Microsoft Teams. |
| 174 | + |
| 175 | +## PARAMETERS |
| 176 | + |
| 177 | +### -Identity |
| 178 | +The Identity of the user to show personal attendant settings for. Can be specified using the ObjectId or the SIP address. |
| 179 | + |
| 180 | +```yaml |
| 181 | +Type: System.String |
| 182 | +Parameter Sets: (All) |
| 183 | +Aliases: |
| 184 | + |
| 185 | +Required: True |
| 186 | +Default value: None |
| 187 | +Accept pipeline input: False |
| 188 | +Accept wildcard characters: False |
| 189 | +``` |
| 190 | +
|
| 191 | +### CommonParameters |
| 192 | +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). |
| 193 | +
|
| 194 | +## INPUTS |
| 195 | +
|
| 196 | +### None |
| 197 | +
|
| 198 | +## OUTPUTS |
| 199 | +
|
| 200 | +### System.Object |
| 201 | +
|
| 202 | +## NOTES |
| 203 | +The cmdlet is available in Teams PowerShell module ?.?.? or later. |
| 204 | +
|
| 205 | +## RELATED LINKS |
| 206 | +
|
| 207 | +[Set-CsPersonalAttendantSettings](./set-cspersonalattendantsettings.md) |
0 commit comments