Commands › Microsoft Teams
Set-CsTeamsPersonalAttendantPolicy
**Limited Preview:** Functionality described in this document is currently in limited preview and only authorized organizations have access. Use this cmdlet to update values in existing Teams Personal Attendant Policies. When policy modifications are temporarily blocked, only **AutomaticTranscription** and **AutomaticRecording** can be updated. The following parameters are not available for changes during this period: `PersonalAttendant`, `CallScreening`, `CalendarBookings`, `InboundInternalCalls`, `InboundFederatedCalls`, `InboundPSTNCalls`.
Quick start script
# Set-CsTeamsPersonalAttendantPolicy — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-MicrosoftTeams -CertificateThumbprint $thumb -ApplicationId $appId -TenantId $tenantId
# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-CsTeamsPersonalAttendantPolicy
$before | Format-List
# 3. Make the change (dry run first)
Set-CsTeamsPersonalAttendantPolicy -WhatIf
Set-CsTeamsPersonalAttendantPolicy
# 4. Verify and diff
$after = Get-CsTeamsPersonalAttendantPolicy
Compare-Object ($before | Out-String) ($after | Out-String)
Syntax
Set-CsTeamsPersonalAttendantPolicy [-Identity <string>] [-PersonalAttendant <string>] [-CallScreening <string>] [-CalendarBookings <string>] [-InboundInternalCalls <string>] [-InboundFederatedCalls <string>] [-InboundPSTNCalls <string>] [-AutomaticTranscription <string>] [-AutomaticRecording <string>] [-Confirm] [-Force] [-WhatIf] [<CommonParameters>]
Parameters (12)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.