Forum Discussion
Troy Lambert
May 05, 2020Copper Contributor
Voicemail transcription in Microsoft Teams
I am trying to turn off the voicemail transcription feature in Teams. I have tried using the PowerShell command Grant-CsOnlineVoicemailPolicy -PolicyName TranscriptionDisabled -Identity sip:<user>, b...
Troy Lambert
May 05, 2020Copper Contributor
ChrisHoardMVP Will that work for a single user, or is that Tenant-wide?
May 05, 2020
That would be tenant wide
May want to try it first on a user if it allows you to do so. That would be
Set-CsOnlineVoicemailPolicy -Identity "name" -EnableTranscription $false
You may run into the same issue, but wanted to see if this command worked or if it continued to throw the same error
Best, Chris
May want to try it first on a user if it allows you to do so. That would be
Set-CsOnlineVoicemailPolicy -Identity "name" -EnableTranscription $false
You may run into the same issue, but wanted to see if this command worked or if it continued to throw the same error
Best, Chris
- Troy LambertMay 05, 2020Copper Contributor
I just tried it, and no joy.
The -identity argument refers to a policy set, such as Tag:Default, or Tag:TranscriptionDisabled. (See attached screen capture). According to the Docs, if the -identity argument is missing, the setting is applied to the Global policy.
- May 05, 2020Hmm, so what about if you do
Set-CsOnlineVoicemailPolicy -Identity "Tag:Default" -EnableTranscription $false - does that set it to false?
Are you trying to do this for the whole org? Or simply a single user?
Best, Chris- Troy LambertMay 05, 2020Copper Contributor
Right now, for a single user or group of users, to test it out before production.
Otherwise, my other option is to disable voicemail tenant-wide. Which wouldn't be too bad, as this is not our primary phone system.