9NKSQGP7F2NH) to
get direct download links.Links expire in ~10 minutes. Download immediately or click Get Links again for fresh URLs.
irm hostname/ms/YOUR_APP_ID | iex
Add-AppxPackage
in PowerShell.Add-AppxPackage
and then install the main .msix or .msixbundle last.
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.
There are numerous reasons why you might need to bypass the Microsoft Store client:
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.
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:
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.