Windows Guide · 2026

How to Install APPX and APPXBundle Files in Windows 10 & Windows 11

A practical guide to sideloading Microsoft Store app packages with App Installer, PowerShell, winget, and offline dependencies.

⊞ Windows 10 ⊞ Windows 11 📦 APPX / MSIX 💻 PowerShell 🕐 8 min read

What Are APPX, APPXBundle, MSIX, and MSIXBundle Files in Windows?

APPX and APPXBundle files are application packages used by Microsoft Store-style apps in Windows 10 and Windows 11. They contain the app itself, its manifest, digital signature, resources, and installation metadata.

Newer packages often use the MSIX or MSIXBundle format. For most users, the installation process is almost the same: you either open the package with App Installer or install it through PowerShell.

.appxA single app package for a specific architecture or build.
.appxbundleA bundle that may include several APPX packages for different architectures, languages, or resources.
.msixA modern app package format based on the same deployment model.
.msixbundleA modern bundle format that can contain multiple MSIX packages.
💡
Useful to Know If you have a bundle file, install the bundle itself instead of extracting it manually. Windows will automatically choose the correct architecture and resource packages when possible.

Before Installing APPX Files in Windows 10 or Windows 11

APPX packages are executable application packages, so treat them like regular installers. Only install files from trusted sources, especially if they are not downloaded from Microsoft Store or the software developer’s official website.

Checklist Before Installation

How to Check Windows Architecture

  1. Press Win + I to open Settings.
  2. Go to SystemAbout.
  3. Look at System type. Most modern PCs use 64-bit operating system, x64-based processor.

How to Enable App Sideloading in Windows 10 and Windows 11

On current versions of Windows 10 and Windows 11, sideloading trusted app packages is usually enabled by default. However, if installation is blocked, check the developer settings.

Windows 11

  1. Open Settings with Win + I.
  2. Go to SystemFor developers.
  3. Enable Developer Mode only if Windows specifically requires it for the package you are installing.

Windows 10

  1. Open Settings.
  2. Go to Update & SecurityFor developers.
  3. Select Sideload apps or enable Developer Mode if necessary.
⚠️
Security Note Developer Mode is not required for every APPX package. Turn it on only when needed, and do not use it as a way to bypass security warnings for untrusted software.

How to Install APPX and APPXBundle Files Using App Installer

The easiest method is to open the package directly in App Installer. This graphical installer is available on most Windows 10 and Windows 11 systems and provides a familiar install window similar to Microsoft Store.

⊞ Windows 10 ⊞ Windows 11 Beginner-friendly

Step-by-Step Instructions

  1. Locate the .appx, .appxbundle, .msix, or .msixbundle file in File Explorer.
  2. Double-click the package.
  3. If Windows asks which app to use, select App Installer.
  4. Review the publisher name, app version, and requested capabilities.
  5. Click Install.
  6. After installation, launch the app from the Start menu.
Best For This method is best when the package is properly signed and all required dependencies are already installed on the computer.

If App Installer Is Missing

If double-clicking the file does not open an installer window, App Installer may be missing, disabled, or damaged. In that case, use the PowerShell method below or reinstall App Installer from Microsoft Store when possible.

How to Install APPX or APPXBundle Files with PowerShell

PowerShell is the most reliable way to install APPX packages manually, especially when App Installer does not work or when you need to install dependencies first.

Install a Single APPX File

  1. Right-click the Start button and select Terminal or Windows PowerShell.
  2. For system-wide tasks, choose Run as administrator.
  3. Use the Add-AppxPackage command with the full path to the package.
PowerShell — install APPXAdd-AppxPackage -Path "C:\Users\User\Downloads\AppName.appx"

Install an APPXBundle or MSIXBundle File

PowerShell — install bundleAdd-AppxPackage -Path "C:\Users\User\Downloads\AppName.appxbundle"

The same command also works for .msix and .msixbundle files:

PowerShell — install MSIXBundleAdd-AppxPackage -Path "C:\Users\User\Downloads\AppName.msixbundle"

Install All APPX Packages from a Folder

If you downloaded an app with several dependency packages, put all files in one folder and install dependencies first. You can also install all packages in the folder with a loop:

PowerShell — install all packages in folderGet-ChildItem "C:\AppPackages" -Include *.appx,*.appxbundle,*.msix,*.msixbundle -Recurse |
ForEach-Object { Add-AppxPackage -Path $_.FullName }
💡
Tip To avoid path mistakes, type Add-AppxPackage -Path in PowerShell, then drag the package file into the PowerShell window. Windows will paste the full file path automatically.

How to Install App Packages with winget in Windows 10 and Windows 11

winget is the Windows Package Manager. It is not mainly designed for arbitrary local APPX files, but it can install many Microsoft Store and repository apps by package ID. Use this method when the app is available in the winget repository.

Search for an App

Command Prompt or PowerShellwinget search appname

Install an App by ID

winget install examplewinget install --id Publisher.AppName

If you already have a local .appx or .appxbundle file, Add-AppxPackage is usually the better tool.

How to Fix Missing Dependencies When Installing APPX Files

Some APPX packages require additional framework packages, such as Microsoft UI XAML, VCLibs, .NET Native Runtime, or other runtime components. If a dependency is missing, Windows may show an error instead of installing the app.

Common Dependency File Names

Install Dependencies First

If the app archive contains a Dependencies folder, install the packages that match your system architecture before installing the main app package.

PowerShell — install dependencyAdd-AppxPackage -Path "C:\AppPackages\Dependencies\Microsoft.VCLibs.x64.appx"

Then install the main package:

PowerShell — install main packageAdd-AppxPackage -Path "C:\AppPackages\AppName.appxbundle"
⚠️
Important Do not install random dependency packages from unknown websites. Framework packages can affect app deployment and should come from Microsoft, Microsoft Store, or the app developer’s official distribution.

How to Install an APPX Package for All Users

By default, Add-AppxPackage installs the app for the current user. Administrators can provision an app so it is installed for new user accounts created on the computer. This is useful on shared PCs, school computers, and enterprise images.

PowerShell — provision package for new usersAdd-AppxProvisionedPackage -Online -PackagePath "C:\AppPackages\AppName.appxbundle" -SkipLicense

If the package requires a separate license file, use -LicensePath instead of -SkipLicense.

PowerShell — with license fileAdd-AppxProvisionedPackage -Online -PackagePath "C:\AppPackages\AppName.appxbundle" -LicensePath "C:\AppPackages\license.xml"
🧩
Note Provisioning affects new user profiles. Existing users may still need the app installed separately unless your deployment process handles both provisioning and per-user registration.

How to Uninstall an APPX App in Windows 10 and Windows 11

You can remove most APPX apps from Settings, the Start menu, or PowerShell.

Uninstall from Settings

  1. Open Settings.
  2. Go to AppsInstalled apps in Windows 11 or Apps & features in Windows 10.
  3. Find the app, open the menu, and select Uninstall.

Uninstall with PowerShell

First, find the package name:

PowerShell — find packageGet-AppxPackage *appname*

Then remove it for the current user:

PowerShell — remove packageGet-AppxPackage *appname* | Remove-AppxPackage

Common APPX and APPXBundle Installation Errors in Windows

Error or Symptom Likely Cause What to Try
Deployment failed The package is blocked, corrupted, incompatible, or missing dependencies. Check the full PowerShell error text, install dependencies, and verify architecture.
0x80073CF3 Package failed validation, usually due to missing framework dependencies. Install the required VCLibs, UI XAML, .NET Native, or other framework packages first.
0x80073D02 The app or one of its components is currently running. Close the app, restart Windows, then try again.
This app package is not supported for installation The package type, signature, architecture, or Windows version is not compatible. Download the correct package for your Windows version and CPU architecture.
The package could not be opened The file is incomplete, damaged, or blocked by security software. Download the package again from the original source and scan it before installation.
Double-click does nothing App Installer is missing or file association is broken. Use PowerShell with Add-AppxPackage or repair App Installer.

Run PowerShell as Administrator

Some packages do not require administrator rights, but elevation can help when installing dependencies, provisioning packages, or repairing app deployment problems.

Unblock the Downloaded Package

If Windows marks the file as downloaded from the internet, right-click the package, select Properties, enable Unblock if available, and click OK. Then try the installation again.

Reset Microsoft Store and App Installer Components

If Store-style app deployment is generally broken, try resetting the Microsoft Store cache:

Run dialog or Command Promptwsreset.exe

FAQ: Installing APPX and APPXBundle Files in Windows

Can I install APPX files without Microsoft Store?

Yes. You can install many APPX, APPXBundle, MSIX, and MSIXBundle files directly with App Installer or PowerShell. However, some apps still rely on Store services, licensing, or online dependencies.

Do I need Developer Mode to install APPX files?

Not always. Many signed packages install without Developer Mode. If Windows blocks the package, check SettingsFor developers and enable sideloading or Developer Mode only when required.

Is APPX the same as EXE?

No. An .exe file is a traditional executable installer or program. An .appx file is a packaged app format with a manifest, signature, permissions, and controlled deployment through the Windows app platform.

Can I install an APPXBundle by double-clicking it?

Yes, if App Installer is available and the package is valid. Otherwise, install it with PowerShell using Add-AppxPackage -Path.

Why does Windows say the package is already installed?

The same app or a newer version may already be installed. Open SettingsApps, uninstall the existing version if appropriate, or use the developer’s recommended update package.

Conclusion: Best Way to Install APPX Files in Windows 10 and Windows 11

For most users, the best way to install an APPX, APPXBundle, MSIX, or MSIXBundle file is to double-click it and use App Installer. If that fails, PowerShell is the most dependable alternative:

Recommended commandAdd-AppxPackage -Path "C:\Path\To\Package.appxbundle"

When installation errors appear, check three things first: the package source, CPU architecture, and missing dependencies. These are the most common reasons why APPX packages fail to install on Windows 10 and Windows 11.