0

我正在尝试使用WUApi中的 COM 对象通过 PowerShell 安装 Windows 更新。

这是我到目前为止的代码。

$updateSession = New-Object -com Microsoft.update.Session
$updateSearcher = $UpdateSession.CreateUpdateSearcher()
$updateResult = $updateSearcher.Search("IsInstalled=0 and Type='Software'");
$needsRestart = $false
foreach($update in $updateResult.Updates) {
    $needsRestart = $needsRestart -or $update.InstallationBehavior.RebootBehavior -ne 0
}
$updateDownloader = $UpdateSession.CreateUpdateDownloader()
$updateDownloader.Updates = $updateResult.Updates
$downloadResult = $updateDownloader.Download()

当我运行这段代码时,我得到IndexOutOfRangeException.

Index was outside the bounds of the array.
At C:\Users\MyUser\Documents\Update-Windows2.ps1:9 char:1
+ $updateDownloader.Updates = $updateResult.Updates
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OperationStopped: (:) [], IndexOutOfRangeException
    + FullyQualifiedErrorId : System.IndexOutOfRangeException

我已经检查并仔细检查了,我似乎无法找到问题所在。我用 C# 代码尝试了类似的逻辑,并且似乎能够Updates很好地分配变量而没有任何问题。

知道我在这里缺少什么吗?提前致谢。

4

1 回答 1

0

无法重现,但我很确定“$updateResult.Updates”是 $null(= 没有可用更新)你能检查一下吗?

如果是这样,请添加一个 if 条件(与集合一起使用时,左侧为 $null!)

if ($null -ne $updateResult.Updates) {
    $updateDownloader.Updates = $updateResult.Updates
    $downloadResult = $updateDownloader.Download()
}

为什么 $null 在左边?(无论 PS 版本如何): https ://docs.microsoft.com/en-us/powershell/scripting/learn/deep-dives/everything-about-null?view=powershell-7.1#checking-for-null

于 2020-11-12T16:29:05.263 回答