powershell 用于在多个windows服务器上安装更新的Powershel脚本

rdlzhqv9  于 2023-03-23  发布在  Shell
关注(0)|答案(1)|浏览(129)

我需要PowerShell脚本来安装更新或安全补丁
这是我的脚本,但它的响应失败

# Check for updates
$updates = Get-WindowsUpdate -Classification "Critical,Security"

# Install updates
Install-WindowsUpdate -KBArticleID $updates.KBArticleID
y4ekin9u

y4ekin9u1#

我仍然建议你使用PSWindowsUpdate,它更可靠。

  • 通过以管理员身份运行PS来安装模块 *
Install-Module PSWindowsUpdate
  • 安装所有可用的更新并重新启动系统 *
Get-WindowsUpdate -AcceptAll -Install -AutoReboot
  • 具体更新 *
Get-WindowsUpdate -Install -KBArticleID 'KB5021200'

您可以从PS Gallery手动下载该模块,要了解更多信息,可以查看pswindowsupdate - by Adam

相关问题