C# 应用程序依赖性检查
我有一个用 C# 编写的应用程序,它可以处理数据库。因此,要在任何计算机上运行此应用程序,我需要安装 .NET 3.5 和 SQL Server 2005。有没有办法在应用程序启动时。它首先检查计算机上是否存在SQL Server 2005和.Net 3.5。如果没有,那么它可能会退出,如果他们这样做了,他们可能会继续。
I have an application that i wrote in C# and it does databases. So to run this app on any machine i need .NET 3.5 and SQL Server 2005 installed. Is there a way that when the application starts. It first checks whether SQL Server 2005 and .Net 3.5 exist on the machine or not. If not then it may exit and if they do they may continue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查先决条件通常是安装人员的工作。
Checking for prerequisites is usually the job of an installer.
可以验证 SQL Server 2005,因为可以在“服务”面板(也可以通过 .NET 访问)中找到已安装的 SQL Server 实例。
.NET 3.5 C# 程序无法检查是否安装了 .NET Framework。
您最好编写本机应用程序(用 VC 或其他语言)来检查先决条件。
SQL Server 2005 can be verified, as installed SQL Server instances can be found in Services panel (which is also accessible via .NET).
It is not possible for a .NET 3.5 C# program to check whether .NET Framework is installed.
You'd better write native applications (in VC or else) to check for prerequisites.