A cloud-based identity and access management service for securing user authentication and resource access
To prevent users from adding the same corporate mailbox to a personal Outlook app while still allowing access through a managed MDM profile, use server-side controls that distinguish allowed vs. blocked clients instead of relying only on generic ActiveSync enablement.
From the provided context, the supported controls are:
- Use Exchange ActiveSync device access rules to allow only Outlook for iOS and Android (managed scenario) Configure Exchange (on-premises or Exchange Online) so that:
- Default ActiveSync access is blocked.
- Only Outlook for iOS and Android is allowed as a client.
This blocks other Exchange ActiveSync native apps and only allows Outlook for iOS and Android as a client. Combined with MDM, this ensures that only the managed Outlook instance can connect.Set-ActiveSyncOrganizationSettings -DefaultAccessLevel Block New-ActiveSyncDeviceAccessRule -Characteristic DeviceModel -QueryString "Outlook for iOS and Android" -AccessLevel Allow - Block or allow specific mobile apps by device model/type/user agent If the goal is to block Outlook for iOS and Android in some scenarios (for example, unmanaged devices) while allowing other clients, use
New-ActiveSyncDeviceAccessRulewith the Outlook identifiers:-
DeviceModel:"Outlook for iOS and Android" -
DeviceType:"Outlook" -
UserAgent:"Outlook-iOS-Android/1.0"
orNew-ActiveSyncDeviceAccessRule -Characteristic DeviceType -QueryString "Outlook" -AccessLevel Block
These rules block Outlook for iOS and Android across iOS and Android platforms. In a mixed scenario, combine these rules with Conditional Access or other policies (not detailed in the context) to differentiate managed vs. unmanaged devices.New-ActiveSyncDeviceAccessRule -Characteristic DeviceModel -QueryString "Outlook for iOS and Android" -AccessLevel Block -
- Prefer device-type/model rules over device IDs The context explicitly warns that device IDs can change and cause unexpected blocking/unblocking. Therefore, use rules based on
DeviceTypeorDeviceModelrather than per-device IDs when controlling mobile access. - If using Exchange Online with OAuth-capable clients For more granular control of Outlook for iOS and Android and other OAuth-capable EAS clients, use Microsoft Entra Conditional Access policies targeting specific mobile platforms (iOS/Android) and choose whether to allow or block access. The context describes:
- A policy that allows Outlook for iOS and Android on specific platforms and blocks other OAuth-capable EAS clients.
- A policy that blocks Outlook for iOS and Android on specific platforms.
- MDM interoperability limitation Outlook for iOS and Android only supports Microsoft Intune as an MDM profile provider. If the mail server requires a different MDM profile, Outlook cannot connect. This means that for strict separation of managed vs. personal Outlook, Microsoft Intune is the supported MDM path; third-party MDMs like SureMDM cannot integrate directly with Outlook’s MDM profile enforcement. If the server requires a non-Intune MDM profile, Outlook for iOS and Android will not connect at all.
In summary, to stop personal Outlook access while allowing managed access:
- Enforce ActiveSync organization settings with default block.
- Allow only Outlook for iOS and Android (or specific device types/models) via
New-ActiveSyncDeviceAccessRule. - Use Conditional Access (where available) to require device management for Exchange access.
- Be aware that Outlook for iOS and Android only supports Microsoft Intune as an MDM profile; third-party MDM cannot be used as an Outlook MDM profile control.
References: