使用一个安装程序安装多个软件(安装包装程序?)
我正在寻找一种无需任何用户输入即可按顺序运行多个安装文件(.exe 和 .msi)的解决方案。我的想法是通过运行一个安装程序让我的工作组中的每个人都拥有相同的开发工具(eclipse、python、cygwin 等)。除了创建批处理脚本之外,是否有软件可以创建这样的安装程序包装器?
谢谢!
I'm looking for a solution to run multiple setup files (.exe and .msi) in sequence without any user input. The idea is to have everyone in my workgroup to have the same development tools (eclipse, python, cygwin, etc) by running one installer. Besides creating a batch script, is there a software out there that could create such a wrapper of installers?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,没有任何工具可以创建这种类型的包装器,或者即使有,它们也不是基于 MSI 的。这是因为 Windows Installer 在同时运行多个安装程序时受到很大限制。
您可以尝试使用支持包先决条件的安装创作工具。通过这种方式,您可以创建一个虚拟包,它不安装任何内容,但仍然处理您想要安装的所有应用程序。
如果您需要一些建议,请随时与我联系。
From my knowledge there aren't any tools which create this type of wrappers, or if there are they are not MSI-based. This is because Windows Installer is very restrictive when it comes to running multiple installers simultaneously.
You can try using a setup authoring tool which supports package prerequisites. This way you can create a dummy package which installs nothing, but still handles all the applications you want installed.
If you want some suggestions don't hesitate to contact me.