Commands › Microsoft Teams

Get-CsTeamsPersonalAttendantPolicy

Microsoft Teams MicrosoftTeams Get-*

**Limited Preview:** Functionality described in this document is currently in limited preview and only authorized organizations have access. Returns information about the Teams personal attendant policies configured for use in your organization. Teams personal attendant policies help determine which users are able to use personal attendant and its functionalities within Microsoft Teams.

Quick start script

# Get-CsTeamsPersonalAttendantPolicy — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-MicrosoftTeams -CertificateThumbprint $thumb -ApplicationId $appId -TenantId $tenantId

# 2. Run and inspect
Get-CsTeamsPersonalAttendantPolicy | Format-List

# 3. Export for evidence / drift tracking
Get-CsTeamsPersonalAttendantPolicy | Export-Clixml .\CsTeamsPersonalAttendantPolicy-$(Get-Date -Format yyyyMMdd).xml

Syntax

Get-CsTeamsPersonalAttendantPolicy [-Identity <string>] [-Filter <string>] [<CommonParameters>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-Identity String Specify the TeamsPersonalAttendantPolicy that you would like to retrieve.
-Filter String Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*".

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.