Skip to content
Open
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
20 changes: 20 additions & 0 deletions teams/teams-ps/MicrosoftTeams/New-CsTeamsMeetingPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ New-CsTeamsMeetingPolicy [-Identity] <XdsIdentity>
[-WhoCanRegister <Object>]
[-EnableRecordingAndTranscriptionCustomMessage <Boolean>]
[-RecordingAndTranscriptionCustomMessageIdentifier <Guid>]
[-FilterProfanityInTranscript <String>]
[<CommonParameters>]
```

Expand Down Expand Up @@ -2022,7 +2023,26 @@ Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -FilterProfanityInTranscript
> [!NOTE]
> This feature has not been fully released yet, so the setting will have no effect.
FilterProfanityInTranscript is a Microsoft Teams meeting policy that controls whether profane words are masked in live transcription and saved meeting transcripts.

Possible Values:
- Enabled: Profane words are masked in: Live transcription during the meeting,and the saved meeting transcript.
- Disabled: Transcription includes the full, unmasked spoken content, including profanity.

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

Required: False
Position: Named
Default value: Enabled
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/p/?LinkID=113216).

Expand Down
21 changes: 21 additions & 0 deletions teams/teams-ps/MicrosoftTeams/Set-CsTeamsMeetingPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ Set-CsTeamsMeetingPolicy [[-Identity] <XdsIdentity>]
[-WhoCanRegister <String>]
[-EnableRecordingAndTranscriptionCustomMessage <Boolean>]
[-RecordingAndTranscriptionCustomMessageIdentifier <Guid>]
[-FilterProfanityInTranscript <String>]
[<CommonParameters>]
```

Expand Down Expand Up @@ -2103,6 +2104,26 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -FilterProfanityInTranscript
> [!NOTE]
> This feature has not been fully released yet, so the setting will have no effect.
FilterProfanityInTranscript is a Microsoft Teams meeting policy that controls whether profane words are masked in live transcription and saved meeting transcripts.

Possible Values:
- Enabled: Profane words are masked in: Live transcription during the meeting, and the saved meeting transcript.
- Disabled: Transcription includes the full, unmasked spoken content, including profanity.

```yaml
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: Enabled
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/p/?LinkID=113216).

Expand Down
Loading