Commands › Microsoft Teams
New-CsVoiceNormalizationRule
Creates a new voice normalization rule.
Quick start script
# New-CsVoiceNormalizationRule — 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-CsVoiceNormalizationRule
$before | Format-List
# 3. Make the change (dry run first)
New-CsVoiceNormalizationRule -Identity <XdsIdentity> -Name <String> -WhatIf
New-CsVoiceNormalizationRule -Identity <XdsIdentity> -Name <String>
# 4. Verify and diff
$after = Get-CsVoiceNormalizationRule
Compare-Object ($before | Out-String) ($after | Out-String)
Syntax — 2 parameter sets
Identity (Default)
New-CsVoiceNormalizationRule [-Tenant <Guid>] [-Description <String>] [-Pattern <String>]
[-Translation <String>] [-IsInternalExtension <Boolean>] [-Priority <Int32>] [-Identity] <XdsIdentity>
[-InMemory] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
ParentAndRelativeKey
New-CsVoiceNormalizationRule [-Tenant <Guid>] -Parent <String> -Name <String> [-Description <String>]
[-Pattern <String>] [-Translation <String>] [-IsInternalExtension <Boolean>] [-Priority <Int32>] [-InMemory]
[-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
Parameters (13)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.