Forum Discussion
giovanni79
Jun 16, 2022Brass Contributor
Removing secondary prompt language from Default Voicemail policy
I set a second language by mistake on the default voicemail policy (I should have set that on a custom policy for a subset of users instead). The problem is that I don't seem to find a setting on...
- Jun 16, 2022Ok it seems it is possible if you $null both languages at the same time
Set-CsOnlineVoicemailPolicy -Identity techcomm -SecondarySystemPromptLanguage $null -PrimarySystemPromptLanguage $null
A secondary must be set if you set a primary
Jun 16, 2022
Hello Giovanni,
I tested and it seems a limitation in the PowerShell cmdlet, I'll make some tests to see if there is a way to clear that
I tested and it seems a limitation in the PowerShell cmdlet, I'll make some tests to see if there is a way to clear that
- Jun 16, 2022Ok it seems it is possible if you $null both languages at the same time
Set-CsOnlineVoicemailPolicy -Identity techcomm -SecondarySystemPromptLanguage $null -PrimarySystemPromptLanguage $null
A secondary must be set if you set a primary- giovanni79Jul 04, 2022Brass ContributorThanks!