SQL Server 是否安装在本地计算机上
可能的重复:
如何在 WiX 安装程序中检测 SQL Server Express < /p>
我我计划通过我的应用程序的安装程序以静默模式安装 SQL Server。
检测计算机上是否安装了 SQL Server Express 2008 的最佳方法是什么?
我的一些假设:
- 搜索注册表中的条目。但是要检查哪个 KEY 呢?并且在卸载服务器时必须删除此条目。
- 尝试连接服务器并分析结果。
- 将检测活动 SQL Server 服务的自定义操作。
Possible Duplicate:
How to detect SQL Server Express in WiX installer
I am planning to install SQL Server in silent mode via installer of my application.
What is the best way to detect that SQL Server Express 2008 is installed on machine?
Some of my assumptions:
- Searching an entry in registry. But which KEY to check..? And this entry must be erased on uninstalling Server.
- Try to connect to Server and analyse the result.
- Custom action that will detect an active SQL Server service..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下链接中的博客文章展示了如何使用 WMI 查看是否安装了 SQL Express。您可以使用本文中的信息来编写帮助程序。它似乎对 SQL 2005 或更高版本有好处。本文不建议检查注册表。
SQL Server Express WebLog
The blog entry at the following link shows how to use WMI to see if SQL Express is installed. You could use the information in this article to write a helper. It seems to be good for SQL 2005 or later. The article does not recommend checking the registry.
SQL Server Express WebLog