Electron auto update fails silently when installing update on Windows
问题 I have an electron app which uses electron-builder for building, packing & publishing the app. I have the following auto-update code: autoUpdater.logger = log; autoUpdater.logger.transports.file.level = "info"; autoUpdater.autoDownload = true; const updateCheck = () => { autoUpdater.checkForUpdates().then(resp => { log.info("autoUpdate response:"); log.info(resp); }); }; app.on("ready", async () => { log.info(`Version: ${app.getVersion()}`); autoUpdater.on("update-downloaded", () => { log