Disable OWA Access in Exchange 2010 Mailbox

Spread the love




When you create a mailbox, Outlook Web Access (OWA) access to the mailbox is enabled by default. Outlook Web App lets you access your Exchange mailbox from almost any Web browser. When you disable OWA Access in Exchange 2010 Mailbox, the user will no longer will be able to connect to mailbox from web browsers. However, mailbox will continue to receive emails. User can still access emails through Outlook using MAPI, POP or IMAP if these protocols are enabled for the particular mailbox. Some organizations like to disable the OWA access and allow just the outlook access. This article shows how you can disable OWA access in Exchange 2010 mailbox.

Disable OWA Access in Exchange 2010 Mailbox

You can disable OWA access either through Exchange Management Console or through Exchange Management Shell. In this article we will run through both processes to disable OWA for a mailbox Test01. To disable Outlook Web App using EMC, open Exchange Management Console → expand Recipient Configuration â†’ click on Mailbox â†’ select the mailbox for which you have to disable OWA → click on Properties from the action pane as shown below.

Disable OWA Access in Exchange 2010 Mailbox

This will open the mailbox properties page, now click on Mailbox Features tab â†’ Select Outlook Web App and then click Disable. Similarly from this page you can switch between other mailbox features. Once the required options are set click on OK.

Disable OWA Access in Exchange 2010 Mailbox

Now the OWA access for the mailbox have been disabled. If the user tries to login to owa user will get an error and won’t be able to view the emails from web.



Disabling OWA for mailbox using Exchange Management Shell

To disable OWA for a mailbox using Exchange management shell, type the following PS command.

Set-CasMailbox -Identity Test01 -OWAenabled $false

The above command will not provide any output. You can use the following PS command to check if it is disabled or not.

Get-CASMailbox -Identity Test01 | Select OWAe*

Which will output results similarly as shown below.

Disable OWA1

You can also disable OWA for multiple users by importing a csv file into the PS command. Below is an example:

Import-Csv C:\Temp\List.csv|foreach { Set-CasMailbox -Identity $_.Ailas -OWAenabled $false }

I have used the following csv template as an input to the above command.

CSVTemp

Now the OWA access for the mailbox have been disabled. If the user tries to login to OWA user will get an error and won’t be able to view the emails from web.

OWA ERROR

In this way you can disable OWA access to the mailbox in Exchange 2010.




The following two tabs change content below.
Bipin is a freelance Network and System Engineer with expertise on Cisco, Juniper, Microsoft, VMware, and other technologies. You can hire him on UpWork. Bipin enjoys writing articles and tutorials related to Network technologies. Some of his certifications are, MCSE:Messaging, JNCIP-SEC, JNCIS-ENT, and others.

Latest posts by Bipin (see all)

scroll to top