I've been working with UWP/Xaml for the past couple days but am unable to answer the title question so far: Is it possible to install an .appxbundle without admin rights?
I'm developing a Unity3D/UWP/Xaml application which cant be deployed to Windows Store and thus needs to be sideloaded and am also using the default Visual Studio 2017 test certificate. Both developer and client PCs are running on Windows 10 x64 with latest build. Developer PC is in Developer Mode and Client PC is in Sideload Apps Mode.
The project generated have the following dependencies:
Using powershell scripts shouldnt be a problem as long as they dont need admin rights.
I've tried a few things with no success so far:
I have also read this thread UWP App Installation without admin rights, powershell interaction and without Windows Store? But I couldnt figure out how to configure the powershell script to run without admin rights.
Everything points me to a faulty certificate, but I still don't get how to generate a trusted one for sideloading apps. Is it possible to do it for free?
Let me know if any more info is needed in order to solve this.
Thank you for your time!
Is it possible to install an .appxbundle without admin rights
You must have administrative access successfully before you install. The issue you met is one of the most frequent issues when sideloading an application for first time in the user machine: Trusted certificates.
According to Trusted certificates section of the document Troubleshoot installation issues with the App Installer file:
To trust the certificate, the certificate must be present in one of the following local machine certificate stores on your device: Trusted Publishers,Trusted People,Trusted Root Authorities (not recommended)
No matter which one, Installing a certificate in the Local Machine store requires administrative access. Please kindly check the Important section.
User contributions licensed under CC BY-SA 3.0