Downloading software from the Microsoft Store can be frustrating when you encounter error codes like 0x80070422 or 0x80073d05, when the Store app is disabled by group policy on your work laptop, or when you need an offline installer for air-gapped computers.
Fortunately, Microsoft hosts all official application packages (.msixbundle, .appx, .BlockMap, .eappx) on public content delivery networks (CDNs). By extracting the exact package link, you can download original installers directly through your browser and install them using PowerShell or App Installer.
In this step-by-step guide, we'll explain how to download .msixbundle files directly using the NexaTools Microsoft Store Link Generator.
Paste any Microsoft Store app URL or Product ID to fetch direct CDN download links for .msixbundle, .appx, and .BlockMap packages across Retail, Release Preview, and Insider channels.
Why Download App Packages Directly?§
System administrators, IT professionals, and privacy-conscious Windows users frequently need offline installer packages for several critical reasons:
- Enterprise Deployment: IT managers deploying software via Microsoft Intune, SCCM, or Group Policy require raw
.msixbundleor.appxfiles for silent deployment. - Blocked Store App: Many corporate and school networks block the native Microsoft Store application to prevent unauthorized downloads.
- Offline & Air-Gapped PCs: Secure workstations without internet access cannot connect to the Microsoft Store to install required tools like Windows Terminal, PowerToys, or HEVC video extensions.
- Bypassing Store Errors: Troubleshooting persistent Microsoft Store download hangs, pending updates, or server connection failures.
Step-by-Step: How to Download .msixbundle Files§
Step 1: Copy the Store App Page URL or Product ID§
Open your web browser, navigate to the official Microsoft Store web catalog (apps.microsoft.com), and search for the desired application (for example, Spotify, Windows Terminal, or Microsoft Photos). Copy the full browser URL from your address bar or the 12-character Product ID at the end of the link (e.g. 9ncbcszsjrsb).
Step 2: Generate Direct Download Links§
Open NexaTools Microsoft Store Generator. Paste the application URL or Product ID into the search input box, select the Retail channel (or Fast/Slow/RP for insider builds), and click Generate Links.
Step 3: Download the Package File§
NexaTools queries Microsoft's official SOAP Delivery APIs and displays a complete table of official download URLs hosted on *.mp.microsoft.com or *.windowsupdate.com.
Locate the file ending in .msixbundle or .appx matching your CPU architecture (x64, x86, or arm64) and click Download.
How to Install .msixbundle Files on Windows 11 & 10§
Once you have downloaded the .msixbundle file, you can install it using two methods:
Method A: Double-Click (GUI)§
If the App Installer utility is present on your system, simply double-click the downloaded .msixbundle file. Click Install in the popup window.
Method B: PowerShell Command Line (Admin Recommended)§
For a reliable, silent installation:
- Open PowerShell as Administrator (Press
Win + Xand select Terminal (Admin) or Windows PowerShell (Admin)). - Run the
Add-AppxPackagecommand:
Add-AppxPackage -Path "C:\Users\YourUsername\Downloads\PackageName.msixbundle"
Troubleshooting Common Errors§
Error 0x80073d05 (App Installation Failed)§
This error occurs when leftover application data from a previous installation blocks the new package.
- Fix: Run
Remove-AppxPackage -Package "PackageFullName"in PowerShell, then retry installing.
Error: Missing Dependency (e.g., Microsoft.VCLibs or UI.Xaml)§
If PowerShell says a framework package is required:
- Download the
Microsoft.VCLibsorMicrosoft.UI.Xamlpackage listed in the NexaTools generator results. - Install the dependency first with
Add-AppxPackage -Path "VCLibs.appx". - Then install your main app
.msixbundle.
Frequently Asked Questions§
What is a .msixbundle file?§
A .msixbundle is a unified Windows application package that bundles multiple .msix files for different CPU architectures (x86, x64, ARM64) and language resources into a single file.
Can I install .msixbundle on Windows 10?§
Yes. Windows 10 (Version 1809 and newer) and all versions of Windows 11 support .msix and .msixbundle packages natively.
Related Resources§
- Microsoft Store Link Generator Tool
- store.rg-adguard.net Alternative Guide
- Appx & MSIX Inspector Tool
Related Tools for IT Administrators & Developers§
- Appx & MSIX Inspector — Inspect manifest XML metadata inside Windows package bundles.
- APK Mobile Sideloader — Install Android APKs on Windows Subsystem for Android (WSA).
- URL Shortener — Create clean short URLs for IT deployment scripts.