Exchange gives you plenty of options to block clients from connecting to mailboxes, depending on the version of the Outlook client and the method used to access the mailbox. In this recipe, you'll learn how to configure these options using the Exchange Management Shell.
Blocking Outlook clients from connecting to Exchange
How to do it...
- The Set-CASMailbox can be used to block access to mailboxes based on several factors. For example, we can prevent an individual user from using Outlook to connect using Outlook Anywhere:
Set-CASMailbox -Identity dsmith -MAPIBlockOutlookRpcHttp $true
- In addition, we can also prevent a user whose Outlook is not configured in cached mode from connecting to their mailbox using the...