With Windows 10, Microsoft introduced a new architecture called Universal Windows Platform (UWP) to unify the app experience across devices such as desktops and mobile phones. Therefore, all new Universal Windows platform applications use “.appx” or “.appxbundle” as their file format. One of the nice things about UWP’s apps is that Windows manages all the installation and uninstallation process, so you don’t have to worry about any leftover files or registry entries.

In general, you can download UWP apps directly from the Windows Store. However, if you want, you can download the .appx files from the developer page and sideload them into your system. Here’s how to install .appx files manually in Windows 10.

Cách cài đặt File .appx trong Windows 10

Before installing or sideload Windows-based platform apps, you need to turn on a lighter in Windows 10. Thankfully, sideloading is enabled by default. However, it is better to verify and allow the “Sideloading” set as your administrator or organization can disable it.

To enable sideloading, click on the Notifications icon on the taskbar, and then select the “All Settings” option.

Install-appx-files-win10-select-all-settings

Once the Settings app has been opened, click on the option “Update and Security”.

Install-appx-files-win10-select-cập nhật-và-bảo mật

Here, navigation to “For Developers” appears on the left panel.

Install-appx-files-win10-select-for-developers

Now, select the radio button “Sideload apps” on the right panel and close the window.

Install-appx-files-win10-select-sideload-option

You have now successfully enabled sideloading in Windows 10.

To sideload a UWP app, simply double-click the .appx file. For example, I downloaded the .appx file of the UWD CrystalDiskMark application and double-clicked it.

Install-appx-files-win10-appx-tệp

Since Windows uses its installer, click the “Install” button to begin the installation procedure. As you can see from the image below, Windows will show you how the application will run. In my case, the CrystalDiskMark application will run with “Full Trust Mode” capability.

Install-appx-files-win10-select-install-tùy chọn

Once the installation is complete, click the “Launch” button to launch the installed UWP application.

Install-appx-files-win10-uwp-app-installed

If everything goes well, you should use the app like any other UWP app installed from the Windows Store.

Install-appx-files-win10-install-uwp-app-running

If you want, you can uninstall the add-on app like any other app from the Windows Store. Find the Start menu application, right-click on it, and then choose the option “Uninstall,” and you are good to go.

Install-appx-files-win10-uninstall-uwp-app

Alternatively, you can also use PowerShell to install a .appx file. To get started, search for PowerShell in the Start menu, right-click on it and then choose the option “Run as Administrator.”

Install-appx-files-win10-select-run-as-admin

The above action will launch PowerShell with administrator privileges. Here, navigate to the file location using the command below. Don’t forget to replace c:pathtoappxfiledirectory with the actual c:pathtoappxfiledirectory path of the .appx file.

 Cd c:  path  to  appx  file  directory

Install-appx-files-win10-di chuyển đến thư mục

After navigating to the required directory, use the command below to install the .appx file. Again, don’t forget to replace “file. appx” with the actual UWP filename.

 Add-AppxPackage.  File.appx

Alternatively, you can also use the command below:

 Add-AppxPackage -Path.  File.appx

Install-appx-files-win10-execute-powershell-lệnh

As soon as you execute the command, the application will be installed. You will not receive any confirmation message in the PowerShell window. However, you can search for the installed application in the Start menu and open it.

Install-appx-files-win10-install-uwp-app-running

Feel free to comment below, sharing your thoughts and experiences using the above methods to install .appx UWP files in Windows 10.