Domain 3 β€” Module 5 of 5 100%
22 of 27 overall
Domain 3: Manage Applications Free ⏱ ~10 min read

App Configuration: Managed Apps & Managed Devices

App configuration policies push settings to apps automatically β€” email server addresses, default URLs, feature toggles β€” so users don't have to configure anything manually.

What are app configuration policies?

Simple explanation

Think of app configuration like pre-setting a rental car’s GPS destination before the driver picks it up.

Instead of the driver manually entering the address, searching for the right route, and choosing settings β€” everything’s ready when they get in. App configuration policies do the same for apps: pre-fill the email server address, set the default homepage in the browser, enable specific features β€” all automatically when the app opens for the first time.

Two delivery channels

App Configuration: Managed Devices vs Managed Apps
FeatureManaged DevicesManaged Apps
Device enrollment requiredYes β€” MDM enrolledNo β€” works on unenrolled BYOD
Delivery mechanismMDM channel (device-level)MAM channel (app-level)
Supported platformsiOS, Android, Windows (limited)iOS, Android
Configuration formatXML or key-value pairs via MDMKey-value pairs via Intune App SDK
Best forCorporate-owned devices with full managementBYOD devices with app protection policies
Works withAny MDM-managed appApps integrated with Intune App SDK/App Wrapping Tool

When to use which

ScenarioChannel
Corporate iPhone enrolled in Intune β€” configure Outlook email accountManaged Devices
Personal Android phone (not enrolled) β€” configure Outlook email accountManaged Apps
Corporate Windows laptop β€” configure Edge browser homepageManaged Devices (or Intune config profile)
Any device β€” configure a LOB app with specific backend URLManaged Apps (if app supports it)

Common app configuration scenarios

Outlook email configuration

The most common use case β€” auto-configure Outlook so users don’t manually enter server settings:

KeyValuePurpose
com.microsoft.outlook.EmailProfile.EmailAccountNameUser display nameShows in account list
com.microsoft.outlook.EmailProfile.EmailAddressUser email (use token: {{mail}})Pre-fills email address
com.microsoft.outlook.EmailProfile.EmailUPNUser UPN (use token: {{userprincipalname}})Authentication identity
com.microsoft.outlook.EmailProfile.ServerAuthenticationModernAuthenticationUse modern auth (not basic)

Token replacement

Intune supports dynamic tokens that are replaced with user-specific values:

TokenReplaced With
{{userprincipalname}}User’s UPN (e.g., sam@tuisolutions.com)
{{mail}}User’s email address
{{partialupn}}UPN prefix (e.g., β€œsam” from sam@tuisolutions.com)
{{AccountId}}Intune account ID
{{deviceid}}Intune device ID
{{userid}}Intune user ID

Sam uses tokens to create a single configuration policy that auto-configures Outlook for all 500 Tui Solutions users β€” each user gets their own email address populated automatically.

Edge browser configuration

KeyValuePurpose
com.microsoft.intune.mam.managedbrowser.homepagehttps://intranet.tuisolutions.comSet default homepage
com.microsoft.intune.mam.managedbrowser.bookmarksJSON array of bookmarksPre-load company bookmarks
Exam tip: managed apps vs managed devices confusion

The exam tests whether you know which channel to use:

  • If the device is enrolled β†’ you can use either channel, but Managed Devices is preferred (more reliable delivery, supports XML)
  • If the device is NOT enrolled (BYOD) β†’ you MUST use Managed Apps channel (MDM channel requires enrollment)
  • If both are configured for the same app β†’ Managed Devices takes priority on enrolled devices

Common trap: β€œAn admin configures an app configuration policy using the Managed Devices channel for a BYOD phone.” This won’t work β€” BYOD isn’t enrolled, so the MDM channel can’t deliver the config.

Deep dive: apps that support configuration

Not every app supports app configuration. The app must be built with one of:

  • Intune App SDK β€” embedded in the app code (most Microsoft apps: Outlook, Teams, Edge, OneDrive)
  • App Wrapping Tool β€” wraps an existing app with Intune management layer
  • Android Enterprise managed configurations β€” standard Android feature, supported by many apps (Zoom, Chrome, etc.)
  • iOS managed app configuration β€” Apple’s MDM standard for delivering key-value pairs

Check the app’s documentation to see which configuration keys are supported. Microsoft publishes configuration keys for all their apps.

🎬 Video walkthrough

Flashcards

Question

What's the difference between Managed Devices and Managed Apps app configuration?

Click or press Enter to reveal answer

Answer

Managed Devices: requires MDM enrollment, delivers config via device MDM channel, supports XML. Managed Apps: no enrollment needed, delivers config via app-level MAM channel, uses key-value pairs. Use Managed Devices for corporate devices, Managed Apps for BYOD.

Click to flip back

Question

What are Intune configuration tokens and what do they do?

Click or press Enter to reveal answer

Answer

Tokens like {{userprincipalname}}, {{mail}}, and {{deviceid}} are placeholders in app configuration policies. Intune replaces them with actual user/device values at delivery time. This lets you create one policy that auto-configures for every user.

Click to flip back

Question

Which channel must you use for app configuration on unenrolled BYOD devices?

Click or press Enter to reveal answer

Answer

Managed Apps channel β€” the Managed Devices (MDM) channel requires device enrollment and won't work on unenrolled BYOD devices.

Click to flip back

Knowledge Check

Knowledge Check

Sam creates an app configuration policy to auto-configure Outlook email for all Tui Solutions employees. He uses the Managed Devices channel. It works on corporate laptops but not on a contractor's personal phone (Entra Registered, not MDM enrolled). Why?

Knowledge Check

Riko wants Outlook on all devices at Pixel & Co to automatically configure with each user's email address β€” without creating individual policies for each of the 80 users. What should she use?


Next up: Endpoint Security: Antivirus, Firewall & Encryption β€” the first line of defense for your managed devices.