What changed (in plain English)
You can now flip a per-mailbox switch so Exchange attributes (aliases, GAL visibility, custom/extension attributes, and many mailbox flags) for directory-synced users are owned and edited in Exchange Online. Identity fields (name, title, department, UPN, etc.) remain mastered in on-prem AD. The property is IsExchangeCloudManaged.
Rollout is in two phases:
- Phase 1 (preview, live now): enable/disable per mailbox; an org-level default for new synced users is coming.
- Phase 2: writeback of selected attributes to on-prem AD via Entra Cloud Sync.
Why this matters (business impact & use cases)
- Retire the “last Exchange server” for recipient admin
If you only kept Exchange on-prem (or EMT “management tools only”) to tweak aliases, hide-from-GAL, or custom attributes, you can move these changes to EXO and plan decommissioning sooner. - Faster, safer delegation
Let service desk adjust aliases or hide a mailbox directly in EAC/EXO—no RDP to on-prem, less privilege sprawl, cleaner audit. - Cleaner onboarding
Create the AD user → sync → assign EXO license → setIsExchangeCloudManaged=$true. No more “you must run New-RemoteMailbox first” muscle memory. - Cloud automation unlocks
Automate updates to extension/custom attributes for apps and workflows using EXO PowerShell/EAC—no on-prem scripts or jump servers. In Phase 2, selected fields (e.g.,proxyAddresses) write back automatically. - Hybrid simplicity during M&A / multi-forest
Standardize Exchange-side management in the cloud while identity workstreams catch up. - Bridge to full cloud governance
Complements Group SOA for cloud-owned distribution/security groups.

New things you can do now
- Edit aliases and many mailbox flags for synced users in EXO without on-prem overwriting them.
- Adopt a cloud-first recipient workflow immediately; add writeback later once Phase 2 ships.
When not to flip it (yet)
- Offboarding back on-prem? Set
IsExchangeCloudManaged=$falsebefore you migrate a mailbox to on-prem, or you’ll break the sync flow. - Still using on-prem Exchange workloads (SMTP relay, public folders, etc.)? Move those first, then decommission per Microsoft’s hybrid guidance.
A 7-step pilot you can run this week
- Prereqs: Ensure Entra Connect Sync ≥ 2.5.76.0.
- Pick 5–20 test mailboxes (include 1–2 shared/room). Confirm they’re dir-synced in EXO.
- Stabilize recent on-prem changes: If you just ran
Set-RemoteMailboxon-prem, wait one sync cycle + 24h before flipping the switch. - Enable per mailbox (EXO):
Set-Mailbox -Identity user@domain.com -IsExchangeCloudManaged $true Get-Mailbox -Identity user@domain.com | fl Identity,IsExchangeCloudManaged - Validate cloud ownership: Change an alias or hide-from-GAL in EXO/EAC; verify it isn’t overwritten by on-prem.
- Tighten RBAC: Limit who can toggle
IsExchangeCloudManaged(custom roles if needed). - Plan the next wave: When the org-level default lands, make new synced users cloud-managed from day one.
Handy commands
# Enable cloud management per mailbox
Set-Mailbox -Identity user@domain.com -IsExchangeCloudManaged $true
# Roll back to on-prem management
Set-Mailbox -Identity user@domain.com -IsExchangeCloudManaged $false
# Find all cloud-managed (dir-synced) mailboxes
Get-Mailbox |
Where-Object { $_.IsDirSynced -eq $true -and $_.IsExchangeCloudManaged -eq $true }
These are straight from Microsoft’s guidance for the preview.
Path to retiring the last Exchange server
If recipient management was your only blocker, this feature + a short pilot lets you move toward no server (and likely no EMT, either). Follow Microsoft’s decommission playbook for hybrid so you don’t lose coexistence or leave artifacts behind.

Further reading
- Microsoft Exchange Team: Introducing cloud-managed remote mailboxes (public preview) https://techcommunity.microsoft.com/blog/exchange/introducing-cloud-managed-remote-mailboxes-a-step-to-last-exchange-server-retire/4446042
- Microsoft Learn: Cloud-based management of Exchange attributes for Remote Mailboxes (preview) https://learn.microsoft.com/en-us/exchange/hybrid-deployment/enable-exchange-attributes-cloud-management
- Microsoft Learn: Management Tools (serverless recipient admin) https://learn.microsoft.com/en-us/exchange/manage-hybrid-exchange-recipients-with-management-tools?utm_source=chatgpt.com
- Microsoft Learn: Decommission on-prem Exchange in a hybrid deployment https://learn.microsoft.com/en-us/exchange/decommission-on-premises-exchange?utm_source=chatgpt.com
- Microsoft Learn: Group Source of Authority (SOA) for groups (preview) https://learn.microsoft.com/en-us/entra/identity/hybrid/concept-group-source-of-authority-guidance?utm_source=chatgpt.com



