是否不可能制作 perMachine 而不是 perUser 的电子应用 MSI 安装程序?
Posted
技术标签:
【中文标题】是否不可能制作 perMachine 而不是 perUser 的电子应用 MSI 安装程序?【英文标题】:Is it impossible to make an electron app MSI installer that is perMachine and not perUser? 【发布时间】:2021-12-26 21:31:39 【问题描述】:我需要从一个电子应用程序制作一个 MSI 以与另一个也设置为每台机器而不是每个用户的 MSI 捆绑。看来这种组合是不存在的。
Electron-Builder squirrelWindows:允许使用 squirrelWindows
创建 MSI 并将 msi
布尔值设置为 true,但没有 perMachine
选项。
https://www.electron.build/configuration/squirrel-windows
Electron-Builder NSIS:具有perMachine
选项,但显然不适用于 MSI。
https://www.electron.build/configuration/nsis
Electron-Wix-MSI:创建 MSI,但看不到更改 perMachine
标志的能力。
https://github.com/felixrieseberg/electron-wix-msi
Windows 安装程序:创建 MSI,perMachine
没有选项
https://github.com/electron/windows-installer
编辑 - 解决方案
electron-wix-msi 上的这些拉取请求更改解决了我的问题: https://github.com/felixrieseberg/electron-wix-msi/pull/138
【问题讨论】:
【参考方案1】:我已经为每台机器打包了多个 Electron 应用程序。这只是一堆文件。可能是一大堆文件。对于带有解压的 node_modules 目录的那些,我只是在预构建步骤中使用 heat 来编写组件。除此之外,它就像任何其他应用程序一样。
【讨论】:
以上是关于是否不可能制作 perMachine 而不是 perUser 的电子应用 MSI 安装程序?的主要内容,如果未能解决你的问题,请参考以下文章