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>, but I get an error back saying the user is not enabled for Online Voicemail Service.
We do not use Teams for our PSTN phone system. This would be for strictly between users within the Teams application.
9 Replies
- Hi Troy Lambert
See here
https://docs.microsoft.com/en-us/powershell/module/skype/set-csonlinevoicemailpolicy?view=skype-ps
Using the Skype Module, on the user try
Set-CsOnlineVoicemailPolicy -EnableTranscription $false
Let me know how you get on
Best, Chris- Troy LambertCopper Contributor
ChrisHoardMVP Will that work for a single user, or is that Tenant-wide?
- 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