Users are generated with a lot of voice mail alerts/emails. where in some part of the regions users are not a big fan of voice mails. So lets see how to disable voice mail completely in the environment.
- From noreply_skype_voicemail_42e4000-ce0f-423f-fff-gfffaf36d2cc@localhost
- Subject: Voice Mail (3 minutes and 47 seconds)
You can disable voice mail only using Skype for business PowerShell. (Set-CsTeamsCallingPolicy)
Skype for Business Online, Windows PowerShell Module
https://www.microsoft.com/en-us/download/details.aspx?id=39366
Import-Module SkypeOnlineConnector $sfbSession = New-CsOnlineSession Import-PSSession $sfbSession
To check Default settings
Get-CsTeamsCallingPolicy | Fl Identity,*voice*
To Disable Voice Mail
Set-CsTeamsCallingPolicy -Identity Global -Allowvoicemail AlwaysDisabled
To Revert Back
Set-CsTeamsCallingPolicy -Identity Global -Allowvoicemail UserOverride
Available Options – AlwaysEnabled,AlwaysDisabled,UserOverride