diff --git a/teams/teams-ps/MicrosoftTeams/Get-AIGeneratedKnowledgeContainer.md b/teams/teams-ps/MicrosoftTeams/Get-AIGeneratedKnowledgeContainer.md new file mode 100644 index 0000000000..4aa35192cd --- /dev/null +++ b/teams/teams-ps/MicrosoftTeams/Get-AIGeneratedKnowledgeContainer.md @@ -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 ] [-CallId ] +``` + +## 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 diff --git a/teams/teams-ps/MicrosoftTeams/MicrosoftTeams.md b/teams/teams-ps/MicrosoftTeams/MicrosoftTeams.md index 711cbeef84..68cad26c49 100644 --- a/teams/teams-ps/MicrosoftTeams/MicrosoftTeams.md +++ b/teams/teams-ps/MicrosoftTeams/MicrosoftTeams.md @@ -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. @@ -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. diff --git a/teams/teams-ps/MicrosoftTeams/Remove-AIGeneratedKnowledge.md b/teams/teams-ps/MicrosoftTeams/Remove-AIGeneratedKnowledge.md new file mode 100644 index 0000000000..867c42a217 --- /dev/null +++ b/teams/teams-ps/MicrosoftTeams/Remove-AIGeneratedKnowledge.md @@ -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 ] [-CallId ] +``` + +## 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