在Windows 8.1

时间:2017-08-04 11:02:51

标签: windows powershell version installed-applications

我需要编写一段代码(最好是脚本)来告诉我是否安装了Adobe Reader,如果是,那么它的版本是什么。我认为在这里使用PowerShell是正确的,但我不知道。

1 个答案:

答案 0 :(得分:1)

$query = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | select DisplayName,DisplayVersion | where {$_.DisplayName -like "*Gimp*"}

if ($query)
{
Write-Host "Adobe Reader is installed with the version $query.DisplayVersion .."
}
else
{
Write-Host "Adobe Reader is not installed.."
}