How to Fix “Publisher Could Not Be Verified” Error on Windows 11
Installing Verified Certificates
Right-click on the MSIX/MSIXBUNDLE package and click on Properties in the context menu.
Move to the Digital Signatures tab and click on Details. If Digital Signatures does not appear here, move to the next section for a working solution.
Click on View Certificate.
Click on Install Certificate.
A new Certificate Import Wizard will open up. Here, select Local Machine and click on Next.
Choose Place all certificates in the following store and then click on Browse.
In the tiny pop-up window, scroll down and choose “Trusted People” and click on “OK”.
Click on Next and Finish to import the certificate.
As you can see here, the signed certificate has been installed.
You can install the app without any errors now.
PowerShell
Right-click on the APPX/APPXBUNDLE package and click on Properties in the context menu.
Under the General tab in the Properties window, you will find a Security option at the bottom. Here, check the box against Unblock and then click on OK. This is a preliminary action meant to allow the application to install.
Double-click on the app and try installing it. If it’s still showing the error, move to the next step.
Right-click on the MSIX/ MSIXBUNDLE package and click on Show more options.
Click on Extract to “folder\”. This will extract the package and will create a folder in the same directory.
Open the extracted folder, and you will find an AppxManifest.xml file.
Right-click on the XML file and choose Copy as path. This will copy the file path to the clipboard, which we will need later on.
Before we install the app using PowerShell, we need to change an important setting on Windows 11.
Open Developer settings.
Enable the toggle next to Developer Mode. This will allow you to sideload MSIX/MSIXBUNDLE packages from any source, even without a certificate.
Open PowerShell as Administrator.
Enter the command: Add-AppxPackage -Register filepath. Replace filepath with the path of the XML file you copied.
As you can see here, the app has been installed on my Windows 11 PC. Bear in mind, you can’t delete the extracted folder as that’s the source from where the application is running.