安装/安装项目在安装之前检查以前安装的项目吗?
有没有办法让我的安装程序项目在继续安装过程之前检查计算机上是否安装了另一个程序?我使用的是 Visual Studio 2008。
Is there a way for my setup/installer poject to check that another program is installed on the machine before proceeding with the install process? I am using Visual Studio 2008.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Windows Installer 支持启动条件。您可以使用程序的组件 ID 来确定它是否已安装。使用 MSI Spy 获取程序的组件 ID。
Windows Installer supports launch conditions. You can use the Component ID of the program to determine if it's installed. Use MSI Spy to get the Component ID of a program.
此外,某些程序在安装项目中被列为先决条件。例如,所有 .Net Frameworks、SQL Server Compact、Windows Installer 3 等。如果您选中这些,您实际上可以让您的应用程序提示下载丢失的文件。
Additionally, some programs are listed as pre-requisites in the setup project. For example, all the .Net Frameworks, SQL Server Compact, Windows Installer 3 etc. If you check these, you can actually have your app prompt to download the missing files.