Microsoft distributes UWP (Universal Windows Platform) and desktop applications as .msixbundle. Apps and AppxBundle app packages in .Windows.
While the Msixbundle, Appx, and AppxPackage installers are reliable ways to sideload app packages, multiple users are unable to do so.
Some of our readers have received "The app installer does not support installation of this app package" error when trying to sideload app packages, especially those downloaded from unofficial sources. There are several possible reasons behind this issue:
Interestingly, there are several workarounds to resolve the installation error This app package is not supported in Windows 11.
Add-AppxPackage -Path X:\Path\to\File.Appx
#This time you won't get the "This package is not supported for installation" error. After the package is successfully installed, exit the PowerShell window and start the application.
To avoid dependency issues, install dependency packages before installing the main app package.
Note Before you start installing Microsoft’s official app installer on your Windows PC, it is recommended to create a restore point on your Windows PC.
Wait for the app installer to discover and download the base dependency package and the main app package. After successful installation, the application will automatically launch on your PC.
These two workarounds will help you overcome the error that this app package installation is not supported during sideloading the app package using the app installer.
While you are here, you may be wondering how to fix the "Cannot open this installation package" error using some simple methods.
The above is the detailed content of Fix: Installation of this app package is not supported. For more information, please follow other related articles on the PHP Chinese website!