Commands › Microsoft Teams

Get-CsTeamTemplateList

Microsoft Teams MicrosoftTeams Get-*

Get a list of available team templates

Quick start script

# Get-CsTeamTemplateList — 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-CsTeamTemplateList -InputObject <IConfigApiBasedCmdletsIdentity> | Format-List

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

Syntax — 2 parameter sets

Get (Default)

Get-CsTeamTemplateList [[-PublicTemplateLocale] <String>] [<CommonParameters>]

GetViaIdentity

Get-CsTeamTemplateList -InputObject <IConfigApiBasedCmdletsIdentity> [<CommonParameters>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-InputObject IConfigApiBasedCmdletsIdentity yes Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
-PublicTemplateLocale String The language and country code of templates localization for Microsoft team templates. This will not be applied to your tenant custom team templates. Defaults to en-US.

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