Commands › Microsoft Teams

Set-CsComplianceRecordingForCallQueueTemplate

Microsoft Teams MicrosoftTeams Set-*

Modifies an existing Compliance Recording for Call Queues template.

Quick start script

# Set-CsComplianceRecordingForCallQueueTemplate — 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-CsComplianceRecordingForCallQueueTemplate
$before | Format-List

# 3. Make the change
Set-CsComplianceRecordingForCallQueueTemplate -Instance <Object>

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

Syntax

Set-CsComplianceRecordingForCallQueueTemplate -Instance <Object> [<CommonParameters>]

Parameters (1)

ParameterTypeRequiredWhat it controls
-Instance Object yes The Instance parameter is the object reference to the Compliance Recording for Call Queue template to be modified.

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