使用 WIX 最大程度地压缩 MSI 安装
我曾经使用 NSIS 为应用程序构建安装,最终的自解压程序大小为 1.2 MB。现在,由于操作需要,我需要使用 WIX,相同的安装结果为 4.2 MB。我将压缩标志设置为包节点上指示的文档和规格。使用 7z 压缩 MSI 会生成 2.4 MB 的 zip 文件。
问题:如何对 MSI 进行最大压缩或创建小型 MSI(例如删除不需要的资源等)?
注意 - 大小非常重要,我现在必须使用 MSI/WIX - 这是一个表演障碍!
I used to build installs for an app with NSIS and the final self extractor was 1.2 MB. Now I need to use WIX due to operational needs and the same install comes out at 4.2 MB. I set the compressed flags as the docs and specs indicated on the package node. Using 7z to zip the MSI results in a 2.4 MB zip file.
Question: How can I do a maximum compress on the MSI or create a small MSI (e.g. remove unneeded resources etc) ?
Note - size is uber important and I have to use MSI/WIX now - this is a show stopper!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题在于 ICON 元素引用了源文件(主 exe),然后再次包含该 exe,这次没有作为资源进行压缩。
下面:
我发现它使用 7Zip 打开生成的 MSI 文件,并看到熟悉的文件大小 - 未压缩的主 exe。
生成的 MSI 文件现在为 1.4 MB,与 NSIS 相当。
The problem was an ICON element that referenced a sourcefile - the main exe - and then included the exe again, this time without compressing as a resource.
And lower down:
I found it using 7Zip to open the resulting MSI file and saw a familiar file size - the uncompressed main exe.
Resulting MSI file now 1.4 MB and on par with NSIS.
您是否尝试在 Media 元素中设置 CompressionLevel='high' 属性?另外,我应该说 WiX 仅包含您指示它包含的内容,因此,我认为您无法轻松地从包中找到任何内容......
Did you try to set CompressionLevel='high' attribute in Media element? Also, I should say that WiX includes only those things you instruct it to include, hence, I don't think you can easily find anything to drop out of your package...