Commands › Microsoft Teams
New-CsAutoRecordingTemplate
Create an Auto Recording template that can be assigned to a call queue.
Quick start script
# New-CsAutoRecordingTemplate — 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-CsAutoRecordingTemplate
$before | Format-List
# 3. Make the change
New-CsAutoRecordingTemplate -Name <String> -Description <String> -SharePointHostName <String>
# 4. Verify and diff
$after = Get-CsAutoRecordingTemplate
Compare-Object ($before | Out-String) ($after | Out-String)
Syntax
New-CsAutoRecordingTemplate -Name <String> -Description <String> -SharePointHostName <String> -SharePointSiteName <String> -RecordingDocumentOwner <String> [-TranscriptionEnabled <Boolean>] [-RecordingEnabled <Boolean>] [-AgentViewPermission <Object>] [-AutoRecordingAnnouncementAudioFileId <String>] [-AutoRecordingAnnouncementTextToSpeechPrompt <String>] [<CommonParameters>]
Parameters (10)
Message Center changes mentioning this command
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.