Commands › Microsoft Teams
New-CsSharedVoicemailTriageSettingsTemplate
The Shared Voicemail Triage Settings Template enables automatic triage of Shared Voicemail using a compliant Substrate Large Language Model (LLM). It also defines which LLM‑generated fields are added to each shared voicemail message, including the importance flag, summary, suggested actions, and categories. All data is processed in real time by the model, and the results are stored in your organization’s Exchange environment as part of the delivered voicemail message.
Quick start script
# New-CsSharedVoicemailTriageSettingsTemplate — 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-CsSharedVoicemailTriageSettingsTemplate
$before | Format-List
# 3. Make the change
New-CsSharedVoicemailTriageSettingsTemplate -Description <String> -Name <String>
# 4. Verify and diff
$after = Get-CsSharedVoicemailTriageSettingsTemplate
Compare-Object ($before | Out-String) ($after | Out-String)
Syntax
New-CsSharedVoicemailTriageSettingsTemplate -Name <string> -Description <string> [-EnableUrgencyDetection <bool>] [-EnableCategoryDetection <bool>] [-EnableCallToActionDetection <bool>] [-EnableVoiceToTextSummary <bool>] [<CommonParameters>]
Parameters (6)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.