Commands › Microsoft Teams
Remove-CsTeamsRecordingAndTranscriptionCustomMessage
> [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. Remove information about the instance of TeamsRecordingAndTranscriptionCustomMessage that have been configured for recording and transcription customized message.
Quick start script
# Remove-CsTeamsRecordingAndTranscriptionCustomMessage — 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-CsTeamsRecordingAndTranscriptionCustomMessage
$before | Format-List
# 3. Make the change
Remove-CsTeamsRecordingAndTranscriptionCustomMessage
# 4. Verify and diff
$after = Get-CsTeamsRecordingAndTranscriptionCustomMessage
Compare-Object ($before | Out-String) ($after | Out-String)
Syntax
Remove-CsTeamsRecordingAndTranscriptionCustomMessage -Id <System.Guid>
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.