Message Center
Microsoft is retiring EWS-based controls for Personal Bookings in Microsoft Bookings on August 5, 2026. After that, access will be managed only via OWA Mailbox Policy settings. Administrators must migrate existing EWS configurations to OWA policies before this date to maintain control.
Introduction
We’re retiring the Exchange Web Services (EWS)–based controls used to enable or disable Personal Bookings (Bookings with me) in Microsoft Bookings. Beginning August 5, 2026, access to Personal Bookings will be managed exclusively through OWA Mailbox Policy settings.
This change aligns with Microsoft’s Exchange Online management and security principles, while providing a single, consistent administrative experience.
When this will happen
How this affects your organization
Who is affected
What will happen
Set-OrganizationConfig (EWS settings)OwaMailboxPolicy-Default).What you can do to prepare
Administrators should complete migration of any existing EWS‑based Personal Bookings controls to OWA Mailbox Policy before August 5, 2026, to avoid unintended changes to user access.
The following steps require Exchange Online PowerShell.
There is no change to the Personal Bookings user experience. This change affects only how administrators manage access.
Migrate your existing EWS‑based Personal Bookings controls to the new OWA Mailbox Policy
Review your current EWS‑based configuration
Get-OrganizationConfig | Select-Object EwsEnabled,EwsApplicationAccessPolicy,EwsBlockList,EwsAllowList
Get-CASMailbox -Identity
Configure Personal Bookings using OWA Mailbox Policy
Disable Personal Bookings for the entire organization
Set-OwaMailboxPolicy -Identity "OwaMailboxPolicy-Default" -PersonalBookingsDisabled $true
Get-OwaMailboxPolicy -Identity "OwaMailboxPolicy-Default" | Select PersonalBookingsDisabled
Enable Personal Bookings for specific users only
New-OwaMailboxPolicy -Name "BwmEnablePolicy"
Set-CASMailbox -Identity <smtp>
Disable Personal Bookings for specific users only (all others are enabled)
Set-OwaMailboxPolicy -Identity "OwaMailboxPolicy-Default" -PersonalBookingsDisabled $false
New-OwaMailboxPolicy -Name "BwmDisablePolicy"
Set-OwaMailboxPolicy -Identity "BwmDisablePolicy" -PersonalBookingsDisabled $true
Set-CASMailbox -Identity <smtp> -OwaMailboxPolicy "BwmDisablePolicy"
After migrating
Learn more: Turn off Personal Bookings | Microsoft Bookings | Microsoft 365 | Microsoft Learn
Compliance considerations
| Question | Answer |
| Does this change include an admin control? | Yes. Control of Personal Bookings access moves to OWA Mailbox Policy, which can be assigned per user. |