winform 通过驱动注册ID检测是否已安装驱动
Posted 凌乱忘语
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了winform 通过驱动注册ID检测是否已安装驱动相关的知识,希望对你有一定的参考价值。
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 }
以上是关于winform 通过驱动注册ID检测是否已安装驱动的主要内容,如果未能解决你的问题,请参考以下文章