Commands › Microsoft Teams
New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage
> [!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)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.