Commands › Microsoft Teams

Get-CsTeamsAppSetupPolicy

Microsoft Teams MicrosoftTeams Get-*

As an admin, you can use app setup policies to customize Microsoft Teams to highlight the apps that are most important for your users.

Quick start script

# Get-CsTeamsAppSetupPolicy — 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-CsTeamsAppSetupPolicy | Format-List

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

Syntax — 2 parameter sets

Identity (Default)

Get-CsTeamsAppSetupPolicy [-Tenant <System.Guid>] [[-Identity] <XdsIdentity>] [-LocalStore]
 [<CommonParameters>]

Filter

Get-CsTeamsAppSetupPolicy [-Tenant <System.Guid>] [-Filter <String>] [-LocalStore] [<CommonParameters>]

Parameters (4)

ParameterTypeRequiredWhat it controls
-Filter String Do not use.
-Identity XdsIdentity Name of App setup policy. If empty, all Identities will be used by default.
-LocalStore SwitchParameter Do not use.
-Tenant Guid Do not use.

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