美文网首页
windows检测程序是否有安装

windows检测程序是否有安装

作者: RichMartin | 来源:发表于2019-07-24 10:53 被阅读0次
    /// <summary>   
        /// 检测程序是否有安装 
        /// </summary>   
        /// <returns>true: 有安裝, false:沒有安裝</returns>   
        private static bool CheckProgramIsInstall(string exeName)
        {
            Microsoft.Win32.RegistryKey uninstallNode = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall");
            var subKeyNames = uninstallNode.GetSubKeyNames();
            foreach (string subKeyName in subKeyNames)
            {
               if (subKeyName.Contains(exeName))
                   return true;
            }
            return false;
        }


        CheckProgramIsInstall("VR mysticraft");

相关文章

网友评论

      本文标题:windows检测程序是否有安装

      本文链接:https://www.haomeiwen.com/subject/gywtrctx.html