如何检查PowerShell是否安装或不使用C#
这个问题在这里已经有了答案:
使用MSDN博客文章PowerShell安装的检测逻辑,我写了如下方法:
public bool PowershellExists()
{
string regval = Microsoft.Win32.Registry.GetValue(@"HKEY_LOCAL_MACHINESOFTWAREMicrosoftPowerShell1", "Install", null).ToString();
if (regval.Equals("1"))
return true;
else
return false;
}
链接地址: http://www.djcxy.com/p/29003.html
上一篇: How to check if PowerShell is installed or not using C#