MS Store Downloader
Direct links · Official CDN
Input Type
Store URL
Store URL Easiest
Product ID e.g. 9N...
Package Family Name
Category ID
Release Ring
Retail (Stable)
Retail (Stable) Recommended
Release Preview
Insider Slow
Insider Fast
Architecture
All (show all)
All (show all)
x64 (64-bit PC) Most common
x86 (32-bit PC)
ARM64
Neutral / Any CPU
Try an example:
Something went wrong. Check the URL or Product ID and try again.
No download links found. This app may require a signed-in account or may not be available in your region.
Fetching download links…
Querying Microsoft Store servers
Resolving Product ID
Connecting to Store API
Extracting download links
Sorting packages
Paste a Microsoft Store link above
Copy any app URL from apps.microsoft.com or paste the Product ID (e.g. 9NKSQGP7F2NH) to get direct download links.
Download Packages 0 files

Links expire in ~10 minutes. Download immediately or click Get Links again for fresh URLs.

PowerShell One-Liner
Download and automatically install apps directly from your Windows terminal.
POWERSHELL
irm hostname/ms/YOUR_APP_ID | iex
Step by step
How it works
1
Paste the URL
Copy any app link from apps.microsoft.com or paste the 9-character Product ID directly into the input field above.
2
Links are generated
We query Microsoft's official Store API, resolve the Product ID, and extract direct CDN download URLs instantly — no sign-in needed.
3
Download directly
Hit the Download button and the file saves straight to your device. No new tabs open, no redirects — just a clean in-page download.
4
Install offline
Double-click the .msix or .msixbundle file to install. On restricted machines use Add-AppxPackage in PowerShell.
Why ShiftTools
Everything you need
Full-speed downloads
Links point directly to Microsoft's global CDN — no throttling, no queue, maximum bandwidth.
100% safe & official
All files come directly from Microsoft. We never proxy, cache, or touch your downloads.
No Store app needed
Works on fresh installs, VMs, air-gapped machines, or devices with the Store disabled by IT policy.
All architectures
Filter by x64, x86, ARM64, or get all packages and dependencies in one go.
Insider ring support
Get Release Preview, Insider Slow, or Insider Fast builds for any app before public release.
Copy direct links
One-click copy for any URL — ideal for deployment scripts, MDM tools, or sharing with your team.
FAQ
Frequently asked questions
The MS Store Downloader is a free web tool that lets you download any Microsoft Store app as a direct .msix, .msixbundle, or .appx package file — without needing the Microsoft Store app to be installed or even working on your device. It is particularly useful for IT administrators who need to deploy apps across multiple machines, developers who want to sideload specific app versions for testing, users on Windows Server or LTSC editions where the Store is not available by default, and anyone who has had the Store disabled by Group Policy. You simply paste the store URL or Product ID and get a direct download link within seconds.
Completely safe. Every download link generated by this tool points directly to Microsoft's official delivery CDN at domains like tlu.dl.delivery.mp.microsoft.com or download.windowsupdate.com. We never host, proxy, re-package, or modify any files in any way. Our backend simply calls the same Microsoft Store API that the Store app itself uses, extracts the signed time-limited download URLs, and passes them directly to your browser. The files you receive are byte-for-byte identical to what you would get through the official Microsoft Store client. You can verify this by checking the file hash against Microsoft's published values.
Microsoft uses session-based, cryptographically signed URLs for all their Store downloads — similar in concept to AWS S3 pre-signed URLs or Azure SAS tokens. These URLs embed an expiry timestamp (typically 10–15 minutes from generation) and a signature that becomes invalid once the time window passes. This is a security measure on Microsoft's side to prevent unauthorised redistribution of their packages. It does not mean the files are dangerous — it just means you need to start your download promptly after clicking Get Links. If your download fails partway through or the link has expired, simply click the Get Links button again to generate a fresh set of URLs and resume your download.
For the vast majority of modern Windows PCs — any laptop or desktop purchased since around 2012 — you should choose x64 (64-bit). If you are on a Windows on ARM device such as a Surface Pro X, Surface Pro 9 5G, or any PC with a Snapdragon processor, choose ARM64 for the best performance (x64 will also work through emulation but will be slower). If you are managing an older 32-bit system choose x86. When in doubt, download the .msixbundle file — it contains all architectures bundled together and Windows will automatically install the right one for your hardware. The bundle is larger in file size but eliminates any guesswork entirely.
Dependency packages are runtime libraries that the main app requires to run correctly. The most common ones are Microsoft.VCLibs (Visual C++ runtime for UWP apps) and Microsoft.UI.Xaml (the modern Windows UI framework). On a standard Windows 10 or 11 machine that has the Microsoft Store active and up to date, these dependencies are almost always already installed as part of other apps, so you may not need to install them separately. However, on a fresh Windows Server install, a machine that has never had any Store apps, or a VM provisioned from a minimal image, you will likely need to install the dependency .appx files first before the main package will install correctly. Install them in order using Add-AppxPackage and then install the main .msix or .msixbundle last.
Yes, absolutely. Use the Release Ring dropdown to switch between Retail (the stable public release), Release Preview (RC builds, usually very close to stable), Insider Slow (Beta channel builds with new features that have passed initial testing), and Insider Fast (Dev channel builds with cutting-edge but potentially unstable features). Note that not every app publishes separate packages to each ring — many developers only publish to Retail. In those cases, all rings will return the same package version. Also note that Insider builds may require your device to be enrolled in the Windows Insider Program for the app to run correctly, as some features are gated behind OS version checks.
Ultimate Guide

Microsoft Store Downloader: Download Appx & MSIX Offline

The modern Windows ecosystem relies heavily on the Microsoft Store for distributing applications. From everyday tools like WhatsApp and Spotify to essential developer frameworks, the Store is the primary hub. However, there are many scenarios where you cannot or do not want to use the official Store application to download these apps. This is where the Microsoft Store Downloader becomes an essential tool for IT administrators, developers, and power users.

Why Download Microsoft Store Apps Offline?

There are numerous reasons why you might need to bypass the Microsoft Store client:

  • Enterprise Deployments: IT departments often block the Microsoft Store to maintain tight control over the network. They need a way to download the offline installer packages (.appxbundle or .msixbundle) to deploy them centrally via Microsoft Intune, SCCM, or simple PowerShell scripts.
  • Windows LTSC & Server: Windows 10/11 Enterprise LTSC (Long-Term Servicing Channel) and Windows Server editions do not come with the Microsoft Store pre-installed. Getting essential apps on these operating systems requires direct package downloads.
  • Virtual Machines & Sandboxes: When spinning up temporary VMs or using Windows Sandbox, signing into a Microsoft account just to download an app is tedious. Offline installers allow for rapid, automated provisioning.
  • Network Restrictions: Some corporate firewalls or geographic restrictions may block the Store app, but allow direct CDN downloads.

How Appx and MSIX Packages Work

Windows apps are distributed in specialized container formats known as APPX and MSIX. These formats ensure clean installations and uninstallations, meaning apps cannot leave registry junk or orphaned files behind.

When you use our downloader, you'll often see multiple files for a single app. These typically include the main app package (e.g., appname_x64.msix) and several dependency packages (e.g., Microsoft.VCLibs or Microsoft.UI.Xaml). Dependencies are shared libraries that many apps use. The Microsoft Store automatically handles downloading these dependencies behind the scenes. When installing offline, you must ensure you have the required dependencies installed before installing the main app.

Installing Offline Packages via PowerShell

Once you have downloaded the required `.msix`, `.appx`, or bundle files, you can install them without double-clicking by using Windows PowerShell. This is crucial for automated setups. Simply open PowerShell as Administrator and use the Add-AppxPackage cmdlet:

Add-AppxPackage -Path "C:\Downloads\App_1.0.0_x64.msixbundle"

If the app fails to install because it's missing a framework, simply run the same command on the dependency files first, and then re-run it for the main application package.