我需要做一个电子应用程序的MSI与另一个MSI,也是设置为每台机器,而不是每个用户。看来这种东西的组合并不存在。
电子生成器squirrelWindows:允许使用squirrelWindows
创建MSI,并将msi
布尔值设置为true,但没有perMachine
选项。https://www.electron.build/configuration/squirrel-windows
电子生成器NSIS:有perMachine
选项,但显然不适用于MSI。https://www.electron.build/configuration/nsis
Electron-Wix-MSI:创建MSI,但看不到更改perMachine
标志的能力。https://github.com/felixrieseberg/electron-wix-msi
Windows-installer:创建MSI,perMachine
https://github.com/electron/windows-installer没有选项
编辑解决方案
这些拉动式请求更改对电子-wix-msi解决了我的问题:https://github.com/felixrieseberg/electron-wix-msi/pull/138
发布于 2022-10-26 12:42:40
我在electron msi上做了一个拉请求/分支,为解决我的问题量身定做:https://github.com/felixrieseberg/electron-wix-msi/pull/138。
发布于 2021-11-15 19:36:20
我每台机器都打包了多个电子应用程序。只是一堆文件。可能会有一大堆文件。对于具有未打包的node_modules目录的组件,我只需在预构建步骤中使用热来编写组件。除此之外,它就像其他任何应用程序一样。
https://stackoverflow.com/questions/69978410
复制相似问题