Powershell 脚本用于自动执行 Windows 更新以及可选更新

Powershell 脚本用于自动执行 Windows 更新以及可选更新

我正在使用下面的 powershell 脚本来更新 windows https://gallery.technet.microsoft.com/scriptcenter/Execute-Windows-Update-fc6acb16#content

它适用于Windows 更新。但它不会安装/更新Microsoft 更新

我正在寻找自动化的脚本重要的可选更新如下所示。

在此处输入图片描述

我怎样才能改变这个脚本?(脚本可以在上面的链接中找到)

答案1

该模块可配置为使用 Microsoft 更新。

强制 Windows 更新,使用 Microsoft 更新,全部接受,然后重新启动

Import-Module PSWindowsUpdate
# register ms update service
Add-WUServiceManager -ServiceID "7971f918-a847-4430-9279-4a52d1efe18d" -Confirm:$false
Install-WindowsUpdate -AcceptAll -MicrosoftUpdate -AutoReboot

相关内容