Internal user not able to open OWA web page

Copper Contributor

Hi Team,

My customer want that user not able to open OWA web page, What i have to change in OWA virtual directory to achieve the same, Exchange server 2016/2019, OWA is not published, its used for internal only.

 

Regards,

Anil Kumar

2 Replies
Hello,

If I understand you correctly, you want to disable OWA for users.
One way to achieve this is to make use of the "Set-Mailbox" cmdlet

You can disable OWA for a specific mailbox:
Set-CASMailbox -Identity "User" -OWAEnabled $false

You can also disable OWA for all mailboxes:
Get-CASMailbox | Set-CASMailbox -OWAEnabled $false

Please note this article
https://docs.microsoft.com/en-us/exchange/clients/outlook-on-the-web/mailbox-access?view=exchserver-...
Want to Disable OWA webpage without impacting ECP.