top of page

How to Disable Unified Messaging for Bulk Mailboxes Using Powershell

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}

Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating
bottom of page