How Store-Delivered Updates Work
By default, UWP apps installed from the Microsoft Store update automatically in the background: Windows periodically checks Partner Center's servers for a newer published Version of an installed package, downloads it, and installs it without interrupting the running app, thanks to MSIX's ability to service files that aren't currently locked and finish the swap on next launch or a brief handoff. Users can also trigger a manual check via the Store app's Downloads and updates page. Because every MSIX install/update is atomic and reversible, a failed or interrupted update never leaves the app in a half-updated, broken state — it simply retries or rolls back to the last good version.
Cricket analogy: Automatic background updates are like a groundskeeper re-rolling the pitch overnight between days of a Test match, the surface changes without stopping play, ready fresh for the next session.
Differential Updates via Block Maps
Rather than re-downloading an entire package on every update, MSIX supports differential (delta) updates using a block map — a per-file hash manifest (AppxBlockMap.xml) generated automatically when the package is built. When a new version is published, the Store compares block maps between the old and new package and downloads only the changed 64KB blocks, which can shrink a 200MB update to a few megabytes for a small code change. This is especially valuable for apps with large asset payloads like games or media-editing tools, where re-downloading everything on every patch would be wasteful for both Microsoft's CDN and the user's bandwidth.
Cricket analogy: Downloading only changed blocks is like a broadcaster only re-recording the highlights package for the specific overs that changed after a review, not re-editing the entire day's footage.
<!-- Excerpt from AppxBlockMap.xml, generated automatically at packaging time -->
<BlockMap xmlns="http://schemas.microsoft.com/appx/2010/blockmap"
HashMethod="http://www.w3.org/2001/04/xmlenc#sha256">
<File Name="ContosoNotes.exe" Size="4823040" LfhSize="66">
<Block Hash="9f86d081884c7d659a2feaa0c55ad015" Size="65536" />
<Block Hash="3e23e8160039594a33894f6564e1b134" Size="65536" />
<Block Hash="a3f39f4e...unchanged..." Size="12032" />
</File>
</BlockMap>
<!-- Only blocks whose hash differs from the previously published version are downloaded -->Managing Updates for Sideloaded and Enterprise Apps
Apps distributed outside the Store — via sideloading, Intune, or Microsoft Endpoint Configuration Manager — don't get automatic Store polling, so update delivery is the IT administrator's or developer's responsibility. Enterprises typically use an MSIX App Attach or Intune line-of-business app policy that pushes a new package version on a schedule, or the developer can host an AppInstaller file (.appinstaller) referencing the latest package URI, which lets the installed app periodically check that URI itself and prompt or silently self-update, provided the app was originally installed via that same .appinstaller mechanism.
Cricket analogy: The .appinstaller file self-checking a URI is like a franchise checking the central IPL auction database each season to update its own squad list, initiated by the team itself rather than pushed centrally.
An .appinstaller file lets you enable 'automatic update on launch' or 'update on a background schedule' by setting UpdateBlocksMap="true" and specifying a HoursBetweenUpdateChecks value, giving sideloaded or LOB apps Store-like automatic update behavior without going through Partner Center at all.
If an app was originally installed via Add-AppxPackage with a raw .msix file rather than through an .appinstaller reference, it has no self-update mechanism at all — the admin or user must manually reinstall a newer package version each time, since there's no URI the app is tracking for updates.
- Store-installed UWP apps update automatically in the background by polling Partner Center for newer Versions.
- MSIX updates are atomic: a failed or interrupted update never leaves the app in a broken half-updated state.
- AppxBlockMap.xml enables differential updates, downloading only changed 64KB blocks instead of the full package.
- Sideloaded and enterprise apps don't get Store polling; updates must be pushed via Intune/ConfigMgr or self-checked via .appinstaller.
- An .appinstaller file can enable automatic or scheduled self-update checks outside the Store.
- Apps installed via raw Add-AppxPackage with no .appinstaller reference have no built-in update mechanism.
- Users can manually trigger a Store update check from the Downloads and updates page.
Practice what you learned
1. What file enables MSIX differential (delta) updates by hashing each file's blocks?
2. How do apps sideloaded via Intune or Configuration Manager typically receive updates?
3. What happens if an MSIX update process is interrupted partway through?
4. What is required for a sideloaded app to self-check for and apply updates automatically outside the Store?
Was this page helpful?
You May Also Like
MSIX Packaging
MSIX is Microsoft's modern Windows app packaging format that unifies MSI, APPX, ClickOnce, and App-V into a single container with clean install/uninstall and dependency management.
Sideloading UWP Apps
How to install UWP/MSIX apps outside the Microsoft Store for development, testing, and enterprise line-of-business distribution.
The Microsoft Store Submission Process
A walkthrough of how developers register, package, and submit UWP/MSIX apps through Partner Center for review and publication in the Microsoft Store.
UWP App Certification
How the Windows App Certification Kit and Microsoft's Store review pipeline validate UWP/MSIX apps for security, performance, and policy compliance.
Related Reading
Related Study Notes in Microsoft Technologies
Browse all study notesWindows Batch Scripting Study Notes
Batch · 30 topics
Microsoft TechnologiesMFC (Microsoft Foundation Classes) Study Notes
C++ · 30 topics
Microsoft TechnologiesSilverlight Study Notes
.NET · 30 topics
Microsoft TechnologiesXAML Study Notes
.NET · 30 topics
Microsoft TechnologiesWPF (Windows Presentation Foundation) Study Notes
.NET · 30 topics
Microsoft TechnologiesMVVM Design Pattern Study Notes
.NET · 30 topics