Commands › Microsoft Teams

Get-AIGeneratedKnowledgeContainer

Microsoft Teams MicrosoftTeams Get-*

The `Get-AIGeneratedKnowledgeContainer` cmdlet is available only to Teams administrators and is designed to retrieve the SharePoint Embedded container URLs for AI-generated meeting knowledge in Microsoft Teams.

Quick start script

# Get-AIGeneratedKnowledgeContainer — 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-AIGeneratedKnowledgeContainer -ThreadId <String> | Format-List

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

Syntax

Get-AIGeneratedKnowledgeContainer [-ThreadId <String>] [-CallId <String>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-ThreadId String yes The meeting thread ID that contains the AI-generated knowledge container you want to retrieve. A thread can contain multiple calls. This parameter is required.
-CallId String The call ID that contains the AI-generated knowledge container you want to retrieve. This parameter is optional.

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