Forum Discussion
anilkumar1450
Feb 23, 2022Copper Contributor
Internal user not able to open OWA web page
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
- Patrick_SchadtCopper ContributorHello,
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-2019- anilkumar1450Copper ContributorWant to Disable OWA webpage without impacting ECP.