← Back to Blog
System Utilities · Guide

How to Download Microsoft Store Apps Offline (.appx, .msix)

Published August 19, 2026 · 4 min read · By ShiftTools Editorial

Quick Summary: Need to install a Windows Store app without signing in, or deploying across multiple offline machines? ShiftTools provides a free MS Store Downloader that extracts direct CDN download links for .appx and .msix files. Generate links directly in your browser or run a simple one-liner in PowerShell.

Why Download Store Apps Offline?

The standard Microsoft Store client forces users to sign in and handles installations automatically. However, there are many legitimate reasons to extract the direct package files (.msix, .msixbundle, .appx):

  • Air-Gapped Environments: Install necessary software on Enterprise IT networks or secure machines that lack direct internet access.
  • No Microsoft Account Needed: Bypass the requirement to log into Windows 11 with a connected Microsoft Account just to download a free tool.
  • Bypass Regional Blocks: Download apps that might be geographically restricted in your current Windows locale.
  • Archiving Old Versions: Keep an offline backup of a specific app version before a mandatory forced update breaks functionality.

Try the ShiftTools MS Store Downloader

Extract direct CDN URLs for any Microsoft Store app instantly in your browser.

Open Store Downloader →

Step-by-Step: Extracting the Download Links

  1. Find the app you want to download on the apps.microsoft.com website and copy its URL.
  2. Open the ShiftTools MS Store Downloader.
  3. Paste the Link: Paste the Microsoft Store URL into the search bar. The tool will automatically extract the 9-character Product ID.
  4. Select Ring (Optional): Keep it on "Retail" for stable public releases, or choose "Fast" or "Release Preview" if you are looking for Windows Insider builds.
  5. Generate Links: Click "Get Links". ShiftTools will securely query Microsoft's backend API and list all available CDN files.
  6. Download: Click the "Download" button next to the `.msix` or `.msixbundle` file. Note that you may also need to download the `.appx` dependencies if this is the first time installing the framework.

How to Install the Downloaded Packages

Once you have downloaded the required `.msix` or `.appx` file, installing it is incredibly straightforward:

  • Method 1: Double Click (GUI) - Simply double-click the downloaded file in your File Explorer. The native Windows App Installer will pop up and guide you through a one-click installation.
  • Method 2: PowerShell (CLI) - Open PowerShell as Administrator and run the following command to quietly install the package:
    Add-AppxPackage -Path "C:\path\to\your\file.msixbundle"

Frequently Asked Questions

Are these files safe to install?
Yes. ShiftTools does not host or modify any files. The generated links point directly to Microsoft's official Content Delivery Network (tlu.dl.delivery.mp.microsoft.com). They are digitally signed by Microsoft and the original developer.
Why does an app fail to install with a missing framework error?
Many Windows apps rely on shared libraries (like Microsoft.VCLibs or Microsoft.UI.Xaml). When you use the Store normally, it downloads these in the background. If you get an error installing offline, return to our downloader, find the listed dependency files, and install them first.
Do the download links expire?
Yes. Microsoft's CDN URLs are dynamically signed with security tokens that typically expire after 10-15 minutes. If a download fails or times out, you must generate fresh links.