在 install4j 中,您能否在一个安装包中包含应用程序的 32 位和 64 位版本,并让用户决定安装哪一个?
在 install4j 中,您能否在一个安装包中包含应用程序的 32 位和 64 位版本,并让用户决定在操作系统为 64 位时安装哪个版本?最简单/最好的解决方案是创建三个项目吗?即一位父母/两个孩子?我对此犹豫不决,因为大多数包含的文件都不是特定于体系结构的,我想将所有内容都保留在一个项目中。
如果另一个安装程序可以完成此操作,我也不必依赖 install4j,尤其是我们公司其他小组使用的 WiX。
In install4j, can you include both 32 and 64 bit versions of an application in one install package and let the user decide which to install if the OS is 64-bit? Would the easiest/best solution be to create three projects? i.e. one parent/two children? I'm hesitant to do this because the majority of the included files are not architecture-specific and I'd like to keep everything in one project.
I'm also not tied to install4j if another installer can accomplish this, especially WiX, which is used by other groups in our company.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前 install4j 无法创建 32 位和 64 位的单个媒体文件。由于 32 位媒体文件也可以在 64 位 Windows 上运行,因此这通常不是一个大问题。 install4j 6 可以实现常见的 32 位/64 位媒体文件。
在任何情况下,您都不需要为 32 位和 64 位安装程序创建单独的项目。您只需在 install4j IDE 的“媒体”步骤中添加两个媒体文件,一个用于 32 位安装程序,另一个用于 64 位安装程序,并在“32 位或 64 位”步骤中进行不同的设置媒体向导。
对于特定于平台的文件,只需添加两个文件集并在媒体向导的“自定义项目默认值 -> 排除文件”步骤中适当排除它们。
Currently install4j cannot create a single media file for 32-bit and 64-bit. Since the 32-bit media file works on 64-bit Windows as well, this is usually not a big problem. Common 32-bit/64-bit media files may be implemented for install4j 6.
In any case, you do not need separate projects for 32-bit and 64-bit installers. You just add two media files in the "Media" step of the install4j IDE, one for the 32-bit installer and another one for the 64-bit installer, with different settings on the "32-bit or 64-bit" step of the media wizard.
As for platform specific files, just add two file sets and exclude them as appropriate in the "Customize project defaults->Exclude files" step of the media wizard.