文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C#中判断某软件是否已安装

C#中判断某软件是否已安装

时间:2010-08-16  来源:aparche

private void button1_Click(object sender, EventArgs e)  
{  
    if (checkAdobeReader() == true)  
    {  
        MessageBox.Show("有安裝 Adobe Reader ");  
    }  
    else 
    {  
        MessageBox.Show("沒有安裝 Adobe Reader ");  
    }  
}  
/// <summary>  
/// 確認是否有安裝 Adobe Reader   
/// </summary>  
/// <returns>true: 有安裝, false:沒有安裝</returns>  
private bool checkAdobeReader()  
{  
    Microsoft.Win32.RegistryKey uninstallNode = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall");  
    foreach (string subKeyName in uninstallNode.GetSubKeyNames())  
    {  
        Microsoft.Win32.RegistryKey subKey = uninstallNode.OpenSubKey(subKeyName);  
        object displayName = subKey.GetValue("DisplayName");  
        if (displayName != null)  
        {  
            if (displayName.ToString().Contains("Adobe Reader"))  
            {  
                return true;  
                // MessageBox.Show(displayName.ToString());  
            }  
        }  
    }  
    return false;  

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载