Follow
Windows

How to Update Kiosk Apps in Windows 11

Richard
Written by
Richard
Mar 7, 2022 Updated Apr 29, 2026 2 min read
How to Update Kiosk Apps in Windows 11

Managing public-facing devices requires precision. This guide explains how to update kiosk app Windows 11 configurations effectively. Whether you are using Assigned Access or advanced MDM deployment, keeping your software current is vital for security and performance.

Why do this? Software updates fix bugs and add features. Updating your kiosk app ensures the device remains secure and functional for users.

What happens when done? The system will apply the new version or configuration. The kiosk will launch the updated app automatically upon the next login.

Understanding Kiosk Mode and App Lifecycle Management

Windows 11 Kiosk mode, or Assigned Access, restricts a user account to a single app or a specific set of apps. Managing the lifecycle of these apps requires understanding how Windows handles package updates. When you update a kiosk app, you are essentially replacing the existing MSIX package or updating the executable path defined in the Assigned Access configuration.

How to Force an App Update on a Windows 11 Kiosk

To force an update without manual intervention, you should leverage Microsoft Intune or Windows Update for Business. By configuring your kiosk as a managed device, you can push updates silently. If you are using a local account, you can use a PowerShell script to trigger an update check for your specific app package.

Step-by-Step: Updating via PowerShell (Admin Required)

For advanced users, PowerShell offers a faster way to manage apps. Note: This requires administrator privileges.

PowerShell
Get-AppxPackage -Name "YourAppName" | Update-AppxPackage

This command forces the system to check for and install the latest version of your app. Always verify the package name using Get-AppxPackage before running the update command.

Troubleshooting Common Kiosk Update Errors

Error CodeMeaningSolution
0x80070005Access DeniedEnsure you are running the command as an administrator.
0x80073CF9Install FailedCheck if the app is currently running and close it.

Advanced Deployment: Intune and CSP

For enterprise environments, use Microsoft Intune. By using Configuration Service Provider (CSP) policies, you can define the kiosk configuration remotely. This ensures that every device in your fleet receives the same app version simultaneously. Refer to the official Microsoft Learn documentation for detailed CSP settings.

Summary

Updating your kiosk app is essential for device stability. Whether you use the Windows Settings menu for simple changes or PowerShell and Intune for automated updates, maintaining your software ensures a smooth user experience. Always remember to test updates in a non-production environment first to avoid downtime.

Can I update a kiosk app while the device is in Single-App mode?

Yes, but you must exit the kiosk session first. Press CTRL + ALT + DELETE to sign out of the kiosk account. Once you are logged in as an administrator, you can update the app via the Microsoft Store, PowerShell, or your MDM solution before restarting the kiosk session.

Was this guide helpful?

Tags: #Windows 11
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

2482 articles → Twitter

📚 Related Tutorials

How to Manage Microsoft Store App Updates in Windows 11
Windows How to Manage Microsoft Store App Updates in Windows 11
How to Re-register Microsoft Store in Windows 11
Windows How to Re-register Microsoft Store in Windows 11
How to Reinstall Microsoft Store Apps in Windows 11
Windows How to Reinstall Microsoft Store Apps in Windows 11
How to Update Microsoft Store Apps on Windows 11
Windows How to Update Microsoft Store Apps on Windows 11

Leave a Reply

Your email address will not be published. Required fields are marked *