Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 75 additions & 0 deletions teams/teams-ps/MicrosoftTeams/Get-AIGeneratedKnowledgeContainer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
---
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
Locale: en-US
Module Name: MicrosoftTeams
title: Get-AIGeneratedKnowledgeContainer
author: ShuhanDong0903
ms.author: shuhandong
ms.date: 04/21/2026
manager: yujin1
online version:
schema: 2.0.0
---

# Get-AIGeneratedKnowledgeContainer

## SYNOPSIS
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.

## SYNTAX
```
Get-AIGeneratedKnowledgeContainer [-ThreadId <String>] [-CallId <String>]
```

## DESCRIPTION
This cmdlet retrieves the SharePoint Embedded container urls for AI-generated meeting knowledge data.

## EXAMPLES

### Example 1
```powershell
PS C:\> Get-AIGeneratedKnowledgeContainer -ThreadId "19:meeting_xxx@thread.v2"
```

## PARAMETERS

### -ThreadId
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.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -CallId
The call ID that contains the AI-generated knowledge container you want to retrieve. This parameter is optional.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

## OUTPUTS

## NOTES

## RELATED LINKS
6 changes: 6 additions & 0 deletions teams/teams-ps/MicrosoftTeams/MicrosoftTeams.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ Use the Find-CsGroup cmdlet to search groups.
### [Find-CsOnlineApplicationInstance](Find-CsOnlineApplicationInstance.md)
Use the Find-CsOnlineApplicationInstance cmdlet to find application instances that match your search criteria.

### [Get-AIGeneratedKnowledgeContainer](Get-AIGeneratedKnowledgeContainer.md)
This cmdlet returns the SharePoint Embedded container URLs for AI-generated meeting knowledge in Microsoft Teams meeting.

### [Get-AllM365TeamsApps](Get-AllM365TeamsApps.md)
This cmdlet returns all Microsoft Teams apps in the app catalog, including Microsoft, custom, and non-Microsoft apps.

Expand Down Expand Up @@ -1139,6 +1142,9 @@ Creates a new app in the Teams tenant app store.
### [Register-CsOnlineDialInConferencingServiceNumber](Register-CsOnlineDialInConferencingServiceNumber.md)
The Register-CsOnlineDialInConferencingServiceNumber command allows you to assign any additional service number that you may have acquired to your conference bridge.

### [Remove-AIGeneratedKnowledge](Remove-AIGeneratedKnowledge.md)
This cmdlet deletes the AI-generated meeting knowledge for specific metings/calls.

### [Remove-CsApplicationAccessPolicy](Remove-CsApplicationAccessPolicy.md)
Deletes an existing application access policy.

Expand Down
75 changes: 75 additions & 0 deletions teams/teams-ps/MicrosoftTeams/Remove-AIGeneratedKnowledge.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
---
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
Locale: en-US
Module Name: MicrosoftTeams
title: Remove-AIGeneratedKnowledge
author: ShuhanDong0903
ms.author: shuhandong
ms.date: 04/21/2026
manager: yujin1
online version:
schema: 2.0.0
---

# Remove-AIGeneratedKnowledge

## SYNOPSIS
The `Remove-AIGeneratedKnowledge` cmdlet is available only to Teams administrators and is designed to delete the AI-generated meeting knowledge for specific metings/calls.

## SYNTAX
```
Remove-AIGeneratedKnowledge [-ThreadId <String>] [-CallId <String>]
```

## DESCRIPTION
This cmdlet deletes the AI-generated meeting knowledge for specific metings/calls.

## EXAMPLES

### Example 1
```powershell
PS C:\> Remove-AIGeneratedKnowledge -ThreadId "19:meeting_xxx@thread.v2"
```

## PARAMETERS

### -ThreadId
The meeting thread ID that contains the AI-generated knowledge you want to delete. A thread can contain multiple calls. This parameter is required.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -CallId
The call ID that contains the AI-generated knowledge you want to delete. This parameter is optional.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

## OUTPUTS

## NOTES

## RELATED LINKS
Loading