我需要PowerShell脚本来安装更新或安全补丁
这是我的脚本,但它的响应失败
# Check for updates
$updates = Get-WindowsUpdate -Classification "Critical,Security"
# Install updates
Install-WindowsUpdate -KBArticleID $updates.KBArticleID
我需要PowerShell脚本来安装更新或安全补丁
这是我的脚本,但它的响应失败
# Check for updates
$updates = Get-WindowsUpdate -Classification "Critical,Security"
# Install updates
Install-WindowsUpdate -KBArticleID $updates.KBArticleID
1条答案
按热度按时间y4ekin9u1#
我仍然建议你使用
PSWindowsUpdate
,它更可靠。您可以从PS Gallery手动下载该模块,要了解更多信息,可以查看pswindowsupdate - by Adam