What are the ways to distribute and install an Win10 Appxpackage without using the Microsoft-Store?
I have a customer who wants me to create a "Exe-File" to let him distribute the app internally in his company.
So I made an Appxpackage withe the inbuilt tools of Visual Studio.
which contains:
- Add-AppDevPackage.ps1
- appname.appx
- appname.cer
Problem: To install the app I had to run the .ps1 File in the PowerShell then install the certificate (.cer) to be able to install the Package. And I think that is to much for the Customer to "only" install the App.
I then Created a AppxPackage with "MakeAppX.exe" and signed it with SignTool.
But still the Certificate needs to be Installed first.
I also know that Microsoft has the Business Option that allows to Distribute the app to Chosen workers, but this is kinda not an Option for the customer...
So my questions are:
- Is there another way to Distribute the App?
- Is it possible to Automate the Process? (Script to install Certificate and then Appx)
- Can I install the App without installing the certificate first?