How to install unsigned Windows 10 apps using PowerShell

When you come across errors trying to install an app on Windows 10, it could be that the appx package is unsigned. Here's how you can get around this problem.

Installing unsigned apps on Windows 10

Windows 10 apps are built and installed differently than traditional desktop applications. While with desktop applications, you need to go through various installation steps, with an appx package, you only need to click one button.

These types of apps (part of the Universal Windows Platform (UWP)) are usually available through the Microsoft Store, but there will be times when you’ll have to install them outside of the store.

Depending on how you acquired the app, you’ll come across apps with a digital signature, which is a requirement before they’re submitted to the Microsoft Store, and those that might still be under development and are unsigned.

While you can install digitally signed Windows 10 apps with a single click from the store and different sources, you cannot easily install unsigned apps. If you try to install an unsigned appx package, you’ll get the “Ask the app developer for a new app package. This one isn’t signed with a trusted certificate (0x800B0100)” error message. However, the installation isn’t impossible, you need to change the installation settings and use the PowerShell command-line tool.

This guide will teach you the steps to install unsigned Windows 10 apps on your computer.

Install unsigned appx packages on Windows 10

It’s important to note that in most cases, you shouldn’t install unsigned apps on Windows 10, as they may cause harm to your computer. However, if you are a developer or trying to install a new Windows 10 app outside of the store, you can use the following steps to install the unsigned “.appx” package.

Enable Developers mode

If the app doesn’t have a digital signature, you must enable the “Developer mode” on your computer.

  1. Open Settings.

  2. Click on Update & security.

  3. Click on For developers.

  4. Under the “Developer Mode” section, turn on the “Install apps from any source, including loose files” toggle switch.

    Windows 10 enable developer mode

  5. Click the Yes button.

  6. Restart your computer.

Once you have enabled the developer mode, you can install the unsigned packages.

Install unsigned apps using PowerShell

If you are trying to install an app that wasn’t packaged, meaning that you have a folder with all content instead of a single *.appx file, you will need to use the following instructions:

  1. Open Start, search for PowerShell, right-click the result, and select the Run as administrator option.

  2. Type the following command to register the app and press Enter:

    Add-AppxPackage -Path PATH-TO-APPXFILEFOLDER\AppxManifest.xml -Register

    PowerShell command to install unsigned appx package on Windows 10

If you have a “*.appx” file, double-click it, and click the Install button. Or to avoid running into any issues, you can use the following PowerShell command:

  1. Open Start.

  2. Search for PowerShell, right-click the result, and select the Run as administrator option.

  3. Type the following command to install the unsigned app and press Enter:

    Add-AppxPackage -Path PATH-TO-APPXFILE\APP.appx

    PowerShell command to install signed appx package on Windows 10

After you complete the steps, you can launch the app from the Start menu like any other Windows application.

About the author

Mauro Huculak is a Windows How-To Expert who started Pureinfotech in 2010 as an independent online publication. He has also been a Windows Central contributor for nearly a decade. Mauro has over 14 years of experience writing comprehensive guides and creating professional videos about Windows and software, including Android and Linux. Before becoming a technology writer, he was an IT administrator for seven years. In total, Mauro has over 20 years of combined experience in technology. Throughout his career, he achieved different professional certifications from Microsoft (MSCA), Cisco (CCNP), VMware (VCP), and CompTIA (A+ and Network+), and he has been recognized as a Microsoft MVP for many years. You can follow him on X (Twitter), YouTube, LinkedIn and About.me.