I want to build a UWP application from exe (electron) using the electron-windows-store package.
What do I need to specify in the devCert, certPass, desktopConverter?
devCert. How do I get a certificate? I went to my account, created the application. Where to take this certificate? If I correctly understand the certificate give after checking the application, but to send the application for verification I need to build it, and for this I need a certificate.
certPass. What is it and where to get it?
desktopConverter. I found this app. This is what I need? If yes, which path to specify (this application from the store)
Update
I got a certificate using this manual. I've written all the data in the js file to create the application.
After that I ran the command to build the app:
PS C:\Users\steko\Desktop\AppX> node .\appx.js
Configuration:
Desktop Converter Location: C:\desktop-converter-tools
Expanded Base Image: C:\BaseImage.wim
Publisher: CN=developmentca
Dev Certificate: C:\Users\steko\Desktop\AppX\devcert.pfx Windows Kit Location: C:\Program Files (x86)\Windows Kits\10\bin\x64
Starting Conversion...
Cleaning pre-appx output folder...
Copying data...
Creating manifest..
Copying visual assets into pre-appx folder...
Overwriting manifest...
Creating priconfig...
events.js:160
throw er; // Unhandled 'error' event
^
Error: spawn C:\Program Files (x86)\Windows Kits\10\bin\x64 \makepri.exe ENOENT at exports._errnoException (util.js:1020:11) at Process.ChildProcess._handle.onexit (internal/child_process.js:193:32) at onErrorNT (internal/child_process.js:367:16)
at _combinedTickCallback (internal/process/next_tick.js:80:11)
at process._tickCallback (internal/process/next_tick.js:104:9)
How to fix the error?