Skip to content
Merged
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
1 change: 1 addition & 0 deletions inkcanvas/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
"uhfHeaderId": "MSDocsHeader-M365-IT",
"ms.topic": "reference",
"ms.devlang": "powershell",
"ms.service": "ink-canvas-powershell",
"feedback_system": "Standard",
"feedback_product_url": "https://github.com/MicrosoftDocs/office-docs-powershell/issues"
},
Expand Down
41 changes: 40 additions & 1 deletion teams/teams-ps/MicrosoftTeams/New-CsTeamsMeetingPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ external help file: Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll-Help.
Locale: en-US
manager: bulenteg
Module Name: MicrosoftTeams
ms.date: 02/26/2025
ms.date: 07/13/2025
ms.reviewer: alejandramu
online version: https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingpolicy
schema: 2.0.0
Expand Down Expand Up @@ -129,6 +129,8 @@ New-CsTeamsMeetingPolicy [-Identity] <XdsIdentity>
[-WhoCanRegister <Object>]
[-EnableRecordingAndTranscriptionCustomMessage <Boolean>]
[-RecordingAndTranscriptionCustomMessageIdentifier <Guid>]
[-AllowMeetingKnowledgeGeneration <Boolean>]
[-MeetingKnowledgeExpirationDays <Int32>]
[<CommonParameters>]
```

Expand Down Expand Up @@ -534,6 +536,25 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -AllowMeetingKnowledgeGeneration
> [!NOTE]
> This feature has not been fully released yet, so the setting will have no effect.

This setting allows admins to control whether an AI-generated meeting knowledge file is created for meetings organized by the user.


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

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

### -AllowMeetingReactions
Set to false to disable Meeting Reactions.

Expand Down Expand Up @@ -1493,6 +1514,24 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -MeetingKnowledgeExpirationDays
> [!NOTE]
> This feature has not been fully released yet, so the setting will have no effect.

This setting controls the number of days meeting knowledge data is retained before it is automatically deleted. The default value is 1825 days.

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

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

### -NewMeetingRecordingExpirationDays
Specifies the number of days before meeting recordings will expire and move to the recycle bin. Value can be from 1 to 99,999 days.

Expand Down
41 changes: 40 additions & 1 deletion teams/teams-ps/MicrosoftTeams/Set-CsTeamsMeetingPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Locale: en-US
manager: bulenteg
Module Name: MicrosoftTeams
ms.author: tomkau
ms.date: 02/26/2025
ms.date: 07/13/2025
ms.reviewer: alejandramu
online version: https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingpolicy
schema: 2.0.0
Expand Down Expand Up @@ -134,6 +134,8 @@ Set-CsTeamsMeetingPolicy [[-Identity] <XdsIdentity>]
[-WhoCanRegister <String>]
[-EnableRecordingAndTranscriptionCustomMessage <Boolean>]
[-RecordingAndTranscriptionCustomMessageIdentifier <Guid>]
[-AllowMeetingKnowledgeGeneration <Boolean>]
[-MeetingKnowledgeExpirationDays <Int32>]
[<CommonParameters>]
```

Expand Down Expand Up @@ -582,6 +584,25 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -AllowMeetingKnowledgeGeneration
> [!NOTE]
> This feature has not been fully released yet, so the setting will have no effect.

This setting allows admins to control whether an AI-generated meeting knowledge file is created for meetings organized by the user.


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

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

### -AllowMeetingReactions
Set to false to disable Meeting Reactions.

Expand Down Expand Up @@ -1533,6 +1554,24 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -MeetingKnowledgeExpirationDays
> [!NOTE]
> This feature has not been fully released yet, so the setting will have no effect.

This setting controls the number of days meeting knowledge data is retained before it is automatically deleted. The default value is 1825 days.

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

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

### -NewMeetingRecordingExpirationDays
Specifies the number of days before meeting recordings will expire and move to the recycle bin. Value can be from 1 to 99,999 days. Value can also be -1 to set meeting recordings to never expire.

Expand Down
Loading