创建多个应用程序的安装程序
我有一些应用程序,其中一些是用 MFC 编写的,其中一些是用 .NET 编写的。
我想创建一个安装程序,将所有这些应用程序安装在“干净”的计算机上(没有任何开发环境)。除了应用程序之外,安装程序还 需要安装合适的.NET框架和VC运行环境。
其他事情:
- 我无权访问所有这些应用程序的代码。
- 这些应用程序将仅安装在 Windows 计算机上。
- 所有应用程序都不是基于 Web 的(Win 应用程序)。
有谁知道一些好的安装工具可以帮助我完成这项任务?
非常感谢。
I have some applications, some of them were written in MFC and some of them were written in .NET.
I want to create a single installer that will install all those applications on a "Clean" machine (without any development environment on it). The installer, besides the applications,
needs to install the appropriate .NET framework and the VC runtime environment.
Other things:
- I don't have access to the code of all those applications.
- The apps will be installed only on windows machines.
- None of the applications is web based (Win applications).
Does any one know some good installation tool that will help me with this task?
Many thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下 NSIS:
以及 WIX:
WIX 更复杂、更强大。
Take a look at NSIS:
And WIX:
WIX is more complex and powerful.
除了 gor 的回答之外,我还想添加 InnoSetup 作为一个非常强大且可编写脚本的安装程序环境。
此外,与 NSIS 一样,它创建专有的安装程序应用程序而不是 MSI 安装程序。
In addition to gor's answer I'd like to add InnoSetup as a very powerful and scriptable installer environment.
Also, like NSIS, it creates proprietary installer applications instead of MSI installers.