top of page

How to Disable Unified Messaging for Bulk Mailboxes Using Powershell

Writer's picture: Radhakrishnan GovindanRadhakrishnan Govindan

In this Article, I am explaining how to disable the Unified Messaging for Bulk Mailboxes using Powershell

Disabling the Unified Messaging for the single user is using GUI mode of Exchange management Console is easy by right clicking the Mailbox and disable unified messaging is the option.

Doing the Manual Work using EMC for bulk users is time consuming Job. You can get this done by using EMS(Exchange Management Shell) by running the below command,

Import-Csv C:\users\radhakrishnan.g\Desktop\users.csv |ForEach-Object -Process{ Disable-UMMailbox $_.mailbox -Confirm:$false}

1 view0 comments
bottom of page