MSIX is the modern Windows app packaging format. It gives any Windows app a reliable, clean install and uninstall, automatic updates, and access to Windows platform features that require a package identity.
Package identity is the key concept. When your app is packaged as MSIX, Windows assigns it a unique identity (publisher + name + version). That identity is required for:
Windows platform APIs such as push notifications, background tasks, and live tiles
AI features that use on-device models through the Windows AI APIs
Store distribution and update channels
Enterprise management through Intune and Configuration Manager
If you're not sure whether to package your app or which packaging model to use, start with the Packaging decision guide.
Key features
Reliable install and uninstall. MSIX delivers a 99.96% install success rate across millions of installs and guarantees a clean uninstall with no leftover files or registry entries.
Differential updates. Only changed 64 KB blocks are downloaded on update, minimizing network impact and update time.
Disk space efficiency. Shared files across apps are managed by Windows; each app remains independent so updates don't affect other apps.
Containerized execution. Apps run in a lightweight container with virtual file system and registry, and Windows virtualizes or redirects certain file system and registry writes to reduce system impact. See MSIX containerization overview.
WinApp CLI. The WinApp CLI provides command-line tools for the complete MSIX workflow: generating certificates, building packages, and signing without leaving the terminal.
Package existing Windows apps. Use the MSIX Packaging Tool to create an MSIX package for any Windows app without access to source code.
Apply runtime fixes. The Package Support Framework lets you apply compatibility fixes to packaged apps without modifying the source code.
Cross-platform SDK. The open source MSIX SDK provides APIs to verify, validate, and unpack MSIX packages on any platform.
Inside an MSIX package
App payload
The payload files are the app code files and assets built from your source.
AppxBlockMap.xml
An XML document listing every file in the package with cryptographic hashes for each 64 KB block. Used for incremental download, differential updates, and integrity verification.
AppxManifest.xml
The package manifest declares the app's identity, dependencies, capabilities, visual elements, and extension points. This is what Windows reads to deploy, display, and update the app.
AppxSignature.p7x
Generated when the package is signed. All MSIX packages must be signed before installation. Combined with AppxBlockMap.xml, this enables Windows to verify package integrity at install time and at runtime.
Apps packaged with MSIX can be configured to run in a lightweight app container that isolates the process using file system and registry virtualization. For a full explanation of what the container changes and how to work with it, see MSIX containerization overview.
Learn how to deliver applications by using MSIX app attach. MSIX app attach is an application delivery technology that separates applications and their state from the operating system and assigns applications to users dynamically.
Plan and execute an endpoint deployment strategy, using essential elements of modern management, co-management approaches, and Microsoft Intune integration.
Ask Learn
Preview
Ask Learn is an AI assistant that can answer questions, clarify concepts, and define terms using trusted Microsoft documentation.