免费的 Windows 安装程序
我找到了很多为.net应用程序制作安装包的程序,但没有一个符合我的要求。
我正在寻找一个免费应用程序,它能够创建安装和卸载包,并且能够检查是否安装了net Framework和sql 2008 Redistributable,如果没有,应用程序应该能够先安装它们,然后再安装开始应用程序安装过程
I have found a lot of programs to make an installation package for .net application but non of them meet my requirements.
I'm looking for a free application which is able to create installation and uninstallation package and is able to check if net framework and sql 2008 Redistributable is installed if not application should be able to install them first and then start application installation process
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
看看 Wix。
它是免费的,但最初的学习曲线可能比其他程序稍微困难一些。 WiX 的输出是一个 *.msi 包。
Take a look at Wix.
It is free, but the initial learning curve may be a little bit harder then other programms. The output of WiX is a *.msi package.
我推荐 Inno Setup - 我将它与 NSIS 进行了比较,发现它更有用。它支持脚本编写,您将通过您选择的搜索引擎找到用于安装 .NET 和其他可再发行组件的示例脚本。
I recommend Inno Setup - I compared it once with NSIS and found it more usable. It suports scripting, and you will find example scripts for installation of .NET and other redistributables through the search engine of your choice.
您是否尝试过 Visual Studio 附带的安装程序?如果非常简单,请尝试 Wix。另外,请考虑 NSIS。
Did you try installer, that is shipped with visual studio? If it is very simple, try Wix. Aslo, consider NSIS.
或者Windows 安装程序?
如果您安装了 Visual Studio,那么您只需在解决方案中创建一个安装项目即可。如果没有,请从上面的链接下载(或选择适当的版本进行下载)并手动使用集创建应用程序。
Or Windows Installer?
If you have Visual Studio installed then you can simply create a setup project within your solution. If not, then download from the above link (or fine the appropriate version to download) and utilise the set creation application manually.