I have a Windows 8 app that I would like to deploy to my Windows RT 2. I only have the .appx
, and I would like to just install it for testing by bypassing the store. However, when I run the command:
Add-AppxPackage <project.appx>
I get the following error:
In-line script returned error output: Add-AppxPackage : Deployment failed with HRESULT: 0x800B0109, A certificate chain processed, but terminated in a root certificate which is not trusted by the trust provider. (Exception from HRESULT: 0x800B0109) error 0x800B0109: The root certificate of the signature in the app package must be trusted.*
Google says that I need the certificate or PowerShell script, but surely there is a way that I can just bypass all of this. Ideally, I would like to just install the application for testing.
Otherwise, what is the easiest method to fix this issue? What else do I need with the .appx
, so that I can install it with no problem?