如何使用 NSIS 为 MSI 文件创建 SETUP.EXE 包装器
我想将现有的 msi 安装程序文件包装到 NSIS 安装程序可执行文件中。因为没有任何选项可以更改msi文件的图标。我只是想自定义输出setup.exe的图标。除此之外,我还想确保 NSIS 不会在我的安装程序中添加任何额外的用户界面。有人有这样做的想法吗?提前致谢。
I want to wrap a existing msi installer file into NSIS installer executable. Because there is not any option to change the icon of the msi file. I just want to customize the icon of the output setup.exe. Along with this I would also want to make sure that NSIS does not add any extra user interface into my installer. Have anybody an idea to do this ? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您想要的 NSIS 属性是: Icon 和 SilentInstall
您通过使用 ExecWait 运行 msiexec.exe 来执行 .msi(搜索 NSIS 论坛和 wiki 中的示例)
The NSIS attributes you want are: Icon and SilentInstall
You execute a .msi by running msiexec.exe with ExecWait (Search NSIS forum and wiki for examples)
为此,您最好使用 7-Zip ,它包含一个专门用于创建自解压安装程序文件,无需额外的 UI。
You're probably better off using 7-Zip for this purpose, it includes a module specifically for creating self-extracting installer files with no additional UI.
只是要更改图标,请使用名为 资源黑客 的旧实用程序
Just to change icon use an old utility called resource hacker
您可能想尝试一下:
程序图标更换器
更改 exe 图标 - 图标更改器
可能也有免费的,尽管我还没有找一个:P
You probably want to give this a try:
Program Icon Changer
Change exe icon - Icon Changer
There are probably free ones out there too, though I have yet to find one :P