2 Ways To Download And Install Appx/AppxBundle Files From Microsoft Store [Offline Installation]

While attempting to install an application from the Microsoft Store, you would notice that you only see the “Get” or “Install” buttons, but never the option to simply download the setup. This is because these are Universal Windows Platform (UWP) applications that automatically get installed on your Windows computers.

However, there can be a need to install certain applications while offline, such as on a computer with no internet connectivity, or limited access. In that case, what you can do is download the Appx or AppxBundle files for an application, move them to the isolated computer, and then install it there. This process is known as “Sideloading.”

In this article, we discuss what an Appx/AppxBundle file is, how you can download the files from Microsoft Store, and then install them on another computer.

What is Appx/AppxBundle File

“.Appx” or “.AppxBundle” files are container files that encompass the files needed to install UWP applications. These files contain names, descriptions, and permissions of an app along with its binary information.

The Windows operating system utilizes this installation format so that the developers do not have to worry about them. These files are simply put together in the APPX format, and then Windows is responsible for the rest of the installation process.

The applications installed using Microsoft Store are in the Appx/AppxBundle format. When you install an app from there, a .Appx or .AppxBundle file is downloaded and installed automatically onto your PC. However, you may need to utilize an offline Appx file from time to time to install an app without using the Microsoft Store.

Let us now continue to see how you can download the Appx/AppxBundle setup files from Microsoft Store, and how you to install them.

How to Download Appx/AppxBundle Files from Microsoft Store

There are two methods to download Appx files from Microsoft Store. One is to generate the direct download links using a third-party website, while the other is to trace the URL Microsoft uses to download the app.

From either method, you get to download the Appx and AppxBundle files that contain all the information needed to install an app offline.

Generate Direct Download Links using rg-AdGuard

eg-AdGuard is a third-party website that generates direct download links for applications available on Microsoft Store. Follow these steps to generate the download links and then download the Appx and AppxBundle files for any application on Microsoft Store:

  1. Open Microsoft Store in any web browser.

  2. Search and open the app that you want to download the Appx file for.

    In this example, we will be using the Netflix application.

  3. Copy the URL for the app page.

    Copy the URL for the app
    Copy the URL for the app
  4. Open the rg-AdGuard website, paste the URL in the text field, select “Retail” from the drop-down menu, and click the checkbox.

    Paste the URL
    Paste the URL

    The website will now populate the page with a bunch of links for Appx, AppxBundle, and other files.

  5. Click on the links to download the Appx and AppxBundle files ONLY.

    Download the Appx files
    Download the Appx files

    Downloading all the files is not necessary. First, only download the “.appx” and the “.appxbundle” files. Secondly, download the ones that match your OS architecture (x86, x64, ARM). Thirdly, multiple versions of the same file may be available. Download only the latest version.

    In this example, we only downloaded the files highlighted in the image above.

The downloaded files are the files needed to install the complete application. These are the application files and any of the dependencies needed for the installation.

Download the files in an empty, separate Folder.

To learn how to install from the Appx and AppxBundle files, move to the relevant section below.

Trace Download URL using Fiddler

Fiddler is a third-party application used to monitor and trace the incoming and outgoing network traffic. Using this tool, we can find out which URL the Microsoft Store app uses to download an app, and then use that URL to download the complete Appx/AppxBundle installer.

  1. Start by downloading and installing Fiddler.

  2. Launch Fiddler and click “WinConfig” from the ribbon menu.

    Open WinConfig in Fiddler
    Open WinConfig in Fiddler
  3. In the AppContainer Loopback Exemption Utility window, select “Microsoft Store” and then click “Save Changes.”

    Select Microsoft Store
    Select Microsoft Store

    Doing this will only show you the traffic coming in and out of the Microsoft Store app.

  4. Close the AppContainer Loopback Exemption Utility window.

  5. Back on the Fiddler app, go to “Edit >> Remove >> All sessions” to clear the window.

    Clear all sessions
    Clear all sessions

    Alternatively, you can also press the CTRL + X shortcut keys to clear all sessions.

  6. Now, open the Microsoft Store app, search for the app you want to download, and click Install.

    Install the app
    Install the app

    Now all traffic through Microsoft Store is being captured by Fiddler. Wait for the app to fully download and install.

  7. Return to the Fiddler app, press the “CTRL + F” shortcut keys for Find, and then search for “appx.”

    Find all sessions with appx
    Find all sessions with “appx”

    The highlighted sessions in yellow are the ones we are interested in.

  8. Right-click any highlighted row, expand Copy, and then click “Just URL.”

    Copy the URL
    Copy the URL
  9. Now paste the URL in a new browser tab/window and hit Enter.

    The associated Appx/AppxBundle package will now begin downloading.

That is it! You have now successfully downloaded the Appx/AppxBundle files from Microsoft Store. It is now time to put these to the test and perform offline installations.

How to Install Appx/AppxBundle Files on Windows for Offline App Installation

Once downloaded, installing the Appx or AppxBundle files is pretty easy. There are two methods to install them; simply by execution, or from Windows PowerShell.

Note that you must install all of the Appx/AppxBundle files. If you chose to download an app using Fiddler, then there would only be one file. However, if you generated the links using rd-AdGuard, then there will be multiple files including dependencies. For the latter, you must first install the dependencies and then the app itself, otherwise, you may encounter an error.

That said, both of the following methods can be adopted to install Appx/AppxBundle files regardless of how many there are.

Of course, it is understood that the file(s) must be first moved to the computer where you want to install the app.

Install Appx/AppxBundle File by Running Them

The simplest and most convenient method to install an app from Microsoft Store offline is by executing its Appx/AppxBundle file.

All you need to do is double-click the file, and an installation wizard will pop up, like this one:

Install Microsoft Store app by executing AppxAppxBundle file
Install a Microsoft Store app by executing Appx/AppxBundle file

Now click “Install,” and the wizard will do its magic. The app will begin installing and you can see its live progress inside the wizard.

Once installed, you can run the app on the computer like any other Microsoft Store app.

Install Appx/AppxBundle File using PowerShell

Similarly, you can also use PowerShell to install an application’s Appx/AppxBundle file(s) on an isolated (or online) computer. Here is how:

  1. Launch an elevated PowerShell instance.

  2. Use the following cmdlet while replacing [PathToAppx] with the complete path to the downloaded Appx/AppxBundle file and use the appropriate file extension:

    add-appxpackage -path "[PathToAppx].Appx"
    Install Microsoft Store app using AppxAppxBundle file from PowerShell
    Install Microsoft Store app using Appx/AppxBundle file from PowerShell

The application will now be installed and you can run it just like a regular UWP app.

Note that if multiple Appx/AppxBundle files are downloaded for the same application, then you must install all of them using any of the methods shared above, starting with the dependencies first. otherwise, you may encounter errors.

Additionally, always ensure that the application has been installed successfully by running it. Sometimes, it may install, but not run, because of missing dependencies.

Closing Thoughts

Previously, you had to enable “Sideloading” manually in Developer Mode to be able to install UWP apps using Appx and AppxBundle files. However, this is no longer necessary and you can sideload apps without enabling or disabling anything.

Even though you can now use the aforementioned methods to download and install Microsoft Store applications offline , we ask you to be wise with it. It is not recommended that you install untrusted Appx/AppxBundle packages without verification, as they may be infected with malware.

If you liked this post, Share it on:
Subhan Zafar is an established IT professional with interests in Windows and Server infrastructure testing and research, and is currently working with Itechtics as a research consultant. He has studied Electrical Engineering and is also certified by Huawei (HCNA & HCNP Routing and Switching).

Leave the first comment

Get Updates in Your Inbox

Sign up for the regular updates and be the first to know about the latest tech information