关于制作软件安装包的问题
我有一个由 Visual Studio 2005 开发的小型 C++ Win 窗体项目。
如何使用 Visual Studio 2005 创建安装包?
并为基于 Windows(未安装 .net)的应用程序构建安装程序。
我想要这些功能如下:
- Install the package on no .net 环境计算机。
- 安装成功完成后,应用程序可以检查更新警报 自动地。 (就像 Windows 操作系统上的 Komodo 编辑器)
我用 google 搜索并找到了这个,
http://support.microsoft.com/kb /307353
我不确定是否需要.net环境来安装该包。
感谢您的阅读和回复。
I have a small C++ Win forms project developed by visual studio 2005.
How can I create a installation package by using visual studio 2005?
And builds an installer for a Windows-based(no .net installed) application.
I want these features as below:
- Install the package on no .net
environment computer. - After installation completed successfully, the application could check update alert
automatically. (Like Komodo Editor on windows OS)
I googled and found this,
http://support.microsoft.com/kb/307353
I am not sure it is required .net environment to install the package or not.
Appreciated for your reading and replies.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Wix 创建 msi 安装程序。它集成到 VS 2005/2008/2010 中。对于复杂的事情来说,它的学习曲线很重,但对于简单的事情来说,它是可以管理的。它使用每个窗口提供的默认安装引擎。
http://wix.sourceforge.net/
Create an msi installer using Wix. It integrates into VS 2005/2008/2010. It has a heavy learning curve for complex things but is manageable for simple things. It uses the default installation engine provided with every windows.
http://wix.sourceforge.net/