Forum Discussion

anilkumar1450's avatar
anilkumar1450
Copper Contributor
Feb 23, 2022

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_Schadt's avatar
    Patrick_Schadt
    Copper Contributor
    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-2019

Resources