winform 通过驱动注册ID检测是否已安装驱动_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > winform 通过驱动注册ID检测是否已安装驱动

winform 通过驱动注册ID检测是否已安装驱动

 2017/9/5 23:08:54  凌乱忘语  程序员俱乐部  我要评论(0)
  • 摘要:1publicboolIsRegistered()2{3stringclsid=ConfigurationManager.AppSettings["clsid"];4//参数检查5Debug.Assert(!String.IsNullOrEmpty(clsid),"clsid不应该为空");6//设置返回值7boolresult=false;8//检查方法,查找注册表是否存在指定的clsid9stringkey=$@"CLSID\{{{clsid}}}"
  • 标签:检测 for 安装 winform
class="code_img_closed" src="/Upload/Images/2017090523/0015B68B3C38AA5B.gif" alt="">
 1  public bool IsRegistered()
 2         {
 3             string clsid = ConfigurationManager.AppSettings["clsid"];
 4             //参数检查
 5             Debug.Assert(!String.IsNullOrEmpty(clsid), "clsid 不应该为空");
 6             //设置返回值
 7             bool result = false;
 8             //检查方法,查找注册表是否存在指定的clsid
 9             string key = $@"CLSID\{{{clsid}}}";
10             RegistryKey regKey = Registry.ClassesRoot.OpenSubKey(key);
11             if (regKey != null)
12             {
13                 result = true;
14             }
15             return result;
16         }
logs_code_collapse">View Code

 

上一篇: 攻破特斯拉后,腾讯科恩实验室还会研究什么? 下一篇: 没有下一篇了!
发表评论
用户名: 匿名