Applies to: Exchange Server 2013, Exchange Online

Topic Last Modified: 2013-02-22

You can force users who receive protected voice mail messages to use the Play on Phone feature to listen to their messages. Or, if the client software doesn't support rights management, users must use Outlook Voice Access to listen to messages.

To listen to voice messages, Unified Messaging (UM)-enabled users can use the Play on Phone feature or use multimedia software on a computer or mobile device. Multimedia playback allows a UM-enabled user to use a media player over computer speakers or use a media player on a mobile device to hear the voice message.

Note:
Protected voice mail is available only on clients that are using a version of Outlook that supports rights management. If the client software doesn't support rights management, users must use Outlook Voice Access to listen to their calls.

By default, the value of the RequireProtectedPlayOnPhone property on a UM mailbox policy is set to false. This means that UM-enabled users that are associated with that UM mailbox policy can listen to protected voice messages by:

If this value is set to true, multimedia playback of protected voice mail isn’t allowed. UM-enabled users associated with a UM mailbox policy on which this value is set to true can listen to protected voice messages only by:

This setting is especially useful when UM-enabled users use public computers, laptops in public places, or their mobile device's media player to listen to protected voice mail that can contain private information.

For additional management tasks related to Protected Voice Mail procedures, see Protected Voice Mail Procedures.

What do you need to know before you begin?

  • Estimated time to complete: Less than 1 minute.

  • You need to be assigned permissions before you can perform this procedure or procedures. To see what permissions you need, see the "UM mailbox policies" entry in the Unified Messaging Permissions topic.

  • Before you perform these procedures, confirm that a UM dial plan has been created. For detailed steps, see Create a UM Dial Plan.

  • Before you perform these procedures, confirm that a UM mailbox policy has been created. For detailed steps, see Create a UM Mailbox Policy.

  • For information about keyboard shortcuts that may apply to the procedures in this topic, see Keyboard Shortcuts in the Exchange Admin Center.

Tip:
Having problems? Ask for help in the Exchange forums. Visit the forums at: Exchange Server, Exchange Online, or Exchange Online Protection.

What do you want to do?

Use the EAC to enable or disable multimedia playback of protected voice messages

  1. In the EAC, navigate to Unified Messaging > UM dial plans. In the list view, select the UM dial plan you want to change, and then click Edit Edit Icon.

  2. Under UM Mailbox Policies, select the UM mailbox policy you want to manage, and then click Edit Edit Icon.

  3. On the UM Mailbox Policy page > Protected voice mail, select the check box next to Require Play on Phone for protected voice messages to enable this setting. Clear the check box to disable this setting.

  4. Click Save.

Use the Shell to enable or disable multimedia playback of protected voice messages

This example allows users who are associated with the UM mailbox policy named MyUMMailboxPolicy to play back protected voice messages using a media player.

Copy Code
Set-UMMailboxPolicy -identity MyUMMailboxPolicy -RequireProtectedPlayOnPhone $false

This example prevents users who are associated with the UM mailbox policy named MyUMMailboxPolicy from playing back protected voice messages using a media player.

Copy Code
Set-UMMailboxPolicy -identity MyUMMailboxPolicy -RequireProtectedPlayOnPhone $true