Commands › Microsoft Teams

New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage

Microsoft Teams MicrosoftTeams New-*

> [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. Create a set of language-specific prompt messages to be displayed to participants after recording or transcription has started.

Quick start script

# New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-MicrosoftTeams -CertificateThumbprint $thumb -ApplicationId $appId -TenantId $tenantId

# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage
$before | Format-List

# 3. Make the change
New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage

# 4. Verify and diff
$after = Get-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage
Compare-Object ($before | Out-String) ($after | Out-String)

Syntax

New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage
 [-Language <String>]
 [-InitiatorImplicit <String>]
 [-ParticipantImplicit <String>]
 [-InitiatorExplicit <String>]
 [-ParticipantExplicitRequested <String>]
 [-ParticipantExplicitProvided <String>]
 [-AgreementDialogue <String>]
 [<CommonParameters>]

Parameters (7)

ParameterTypeRequiredWhat it controls
-Language String Define language of the message set. In a meeting, if the organizer has applied a custom message, all participants will use the organizer's policy.
-InitiatorImplicit String Custom message when user is recording or transcription initiator, and recording or transcription consent policy is off for the organizer.
-ParticipantImplicit String Custom message when others in meeting turn on recording or transcription, and consent policy is off for the organizer.
-InitiatorExplicit String Custom message when user is recording or transcription initiator, and consent policy is on for the organizer.
-ParticipantExplicitRequested String Custom message when others turn on recording/transcription, consent policy is on, and consent is required.
-ParticipantExplicitProvided String Custom message when others turn on recording/transcription, consent policy is on, and consent has been given.
-AgreementDialogue String Custom message for the agreement dialog when user interacts (mute, share screen, turn on camera) during recording.

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