Commands › Microsoft Teams

Get-TeamsApp

Microsoft Teams MicrosoftTeams Get-*

Returns app information from the Teams tenant app store.

Quick start script

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

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

Syntax

Get-TeamsApp [-Id <String>] [-ExternalId <String>] [-DisplayName <String>] [-DistributionMethod <String>]
 [<CommonParameters>]

Parameters (4)

ParameterTypeRequiredWhat it controls
-DisplayName String Name of the app visible to users
-DistributionMethod String The type of app in Teams: global or organization. For LOB apps, use "organization"
-ExternalId String The external ID of the app, provided by the app developer and used by Microsoft Entra ID
-Id String The app's ID generated by Teams (different from the external ID)

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