Reputation: 21
I have been developing a flutter desktop application. I'm going to deliver it to users in msix format, but when it comes to installation, it's not possible to install it because of its certificate is untrusted for other users. I need to get somehow trusted pfx certificate that make my msix app available and trusted for all users.
Upvotes: 1
Views: 2042
Reputation: 376
You have multiple options here:
To use a self-signed certificate this certificate needs to be installed/trusted on each computer the app gets installed before you start the installation.
You could for example create an unsigned (classic/non-appx) installer that installs your certificate by using CertUtil.exe
and then invokes your appinstaller.
Upvotes: 1