Kiosk mode locks a Windows device to one or more apps, preventing users from accessing the broader OS. It is used for digital signage, self-service terminals, shared reception devices, and staff workstations where only specific apps are needed. Intune deploys kiosk configuration using Assigned Access, configured via a Device Restrictions profile or a custom XML profile for complex setups.
Single-app vs multi-app kiosk
Prerequisites
- Windows 10/11 Pro, Enterprise, or Education (not Home)
- Device enrolled in Intune
- For single-app kiosk: the app must be a UWP (Store) app or Microsoft Edge in kiosk mode
- For multi-app kiosk: apps can be UWP or Win32
- A dedicated local account or Entra ID account for the kiosk user
Configure single-app kiosk
Go to Kiosk section:
Configure multi-app kiosk
Multi-app kiosk requires you to specify:
- The user account that gets the kiosk experience (local account or Entra ID)
- The list of apps to show in the Start menu (UWP and Win32)
- Whether to show taskbar
- Whether to allow access to Settings, Task Manager, etc.
For complex multi-app setups, use a custom Assigned Access XML profile.
Custom Assigned Access XML
For full control over the kiosk layout, deploy a custom XML via a Settings Catalog profile or OMA-URI:
<?xml version="1.0" encoding="utf-8"?>
<AssignedAccessConfiguration xmlns="http://schemas.microsoft.com/AssignedAccess/2017/config">
<Profiles>
<Profile Id="{kiosk-profile-id}">
<AllAppsList>
<AllowedApps>
<App AppUserModelId="Microsoft.MicrosoftEdge_8wekyb3d8bbwe!MicrosoftEdge"/>
<App AppUserModelId="Microsoft.WindowsCalculator_8wekyb3d8bbwe!App"/>
</AllowedApps>
</AllAppsList>
<StartLayout>
<![CDATA[<LayoutModificationTemplate>...</LayoutModificationTemplate>]]>
</StartLayout>
<Taskbar ShowTaskbar="false"/>
</Profile>
</Profiles>
<Configs>
<Config>
<Account>kioskuser</Account>
<DefaultProfile Id="{kiosk-profile-id}"/>
</Config>
</Configs>
</AssignedAccessConfiguration>Auto-login for kiosk accounts
For unattended kiosk devices, configure auto-login via a Settings Catalog profile:
Frequently Asked Questions
Kiosk mode locks a Windows device to run one app (single-app kiosk) or a limited set of apps (multi-app kiosk) for a specific user account. The user cannot access the desktop, settings, or any app outside the configured list. Intune deploys kiosk configuration via a Device Restrictions or Assigned Access profile.
Single-app kiosk runs one app in full screen - typically a browser for digital signage or a POS terminal. Multi-app kiosk shows a locked-down Start menu with only the apps you specify. Multi-app kiosk is used for shared devices like reception terminals or staff workstations with limited roles.
Yes. Kiosk configuration in Intune is applied per user account. You specify the user account (local account, Entra ID account, or auto-login) that gets the kiosk experience. Other accounts on the same device can still log in normally if configured that way.
No. Assigned Access (kiosk mode) requires Windows 10/11 Pro, Enterprise, or Education. It is not available on Home editions.