单个 .msi Windows 软件包安装程序文件的最大大小是多少?
我们正在对服务器进行一些上传测试,特别是接收 .msi 软件包安装程序文件。目前,我可以使用有限的知识和我所拥有的 Visusl Studio 工具创建一个总大小为 2GB 的 .msi 文件,但我想知道是否可以创建一个更大的文件。
我的谷歌搜索都没有给我一个明确的答案,但我需要测试可以上传的最大文件大小,这似乎受到最大 .msi 文件大小的限制,我无法找到或创建该文件。我假设它大于 2GB,有人知道或可以指出我正确的资源吗?
.msi 文件的最大大小是多少?如果大于2GB,如何创建一个?
We are doing some upload testing to the server, specifically taking in .msi package installer files. Currently I can create a 2GB total file size .msi with the limited knowledge and Visusl Studio tools that I have, but am wondering if I can create a larger one.
None of my googling has shown me a definitive answer, but I need to test the max file size that can be uploaded, which seems to be restricted by the max .msi file size, which I can't find or create. I assume it's larger than 2GB, anyone know or can point me to the right resource?
What is the max .msi file size? If greater than 2GB, how do I create one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
2 GB 的限制是针对 MSI 包中包含的 CAB 文件,而不是针对 MSI 数据库本身。要创建更大的安装包,您需要将其配置为将资源放置在 MSI 包旁边的多个 CAB 文件中。
The limit of 2 GB is for the CAB files included in the MSI package, not for the MSI database itself. To create a larger setup package you need to configure it to place the resources in multiple CAB files, next to the MSI package.
本文应该回答您有关 MSI 大小的所有问题,并警告相关的各种其他限制包含大量文件/组件的 MSI 包。
来自 MSDN 的其他链接:
希望这将为您带来正确的解决方案。
This article should answer all your questions about MSI size as well as warn about various other limitations related to the MSI packages with lots of files / components.
Additional links from MSDN:
Hope this will bring you to the right solution.