Powershell脚本给出了错误的Windows更新信息

时间:2019-06-03 17:41:52

标签: powershell windows-update

我具有以下脚本来检测未安装的Windows Update,但是它始终显示IsDownloaded = false,但已下载,我将Windows Update设置为“仅下载”。有人知道为什么它没有返回正确的信息吗?

$updatesession =  [activator]::CreateInstance([type]::GetTypeFromProgID("Microsoft.Update.Session"))
$updatesearcher = $updatesession.CreateUpdateSearcher()
$searchresult = $updatesearcher.Search("IsInstalled=0")
$searchresult

我正在使用Windows Server 2016。

0 个答案:

没有答案