我正在尝试使用获取可用更新列表
$UpdateSession = New-Object -ComObject 'Microsoft.Update.Session'
Write-Host "[1]"
$UpdateSession.ClientApplicationID = 'MSDN PowerShell Sample'
Write-Host "[2]"
$UpdateSearcher = $UpdateSession.CreateUpdateSearcher()
Write-Host "[3]"
$SearchResult = $UpdateSearcher.Search("IsInstalled=0 and IsHidden=0")
Write-Host "[4]"
最后一条指令 $SearchResult = $UpdateSearcher.Search("IsInstalled=0 and IsHidden=0")
冻结,什么也没有返回,我不知道为什么。
输出:
[1]
[2]
[3]
<running...>
我猜想它确实在做某事,因为我无法使用 CTRL+C 来停止它。必须重新启动 Powershell。
(W7 SP1、.NET Framework 4.6.1、Powershell 4.0)
有什么想法吗?
编辑:摘自获取 WindowsUpdates.ps1脚本