我正在使用下面的 powershell 脚本来更新 windows https://gallery.technet.microsoft.com/scriptcenter/Execute-Windows-Update-fc6acb16#content
它适用于Windows 更新。但它不会安装/更新Microsoft 更新
我正在寻找自动化的脚本重要的和可选更新如下所示。
我怎样才能改变这个脚本?(脚本可以在上面的链接中找到)
答案1
该模块可配置为使用 Microsoft 更新。
- https://www.powershellgallery.com/packages/PSWindowsUpdate/1.5.2.2
- https://gallery.technet.microsoft.com/scriptcenter/2d191bcd-3308-4edd-9de2-88dff796b0bc
强制 Windows 更新,使用 Microsoft 更新,全部接受,然后重新启动
Import-Module PSWindowsUpdate
# register ms update service
Add-WUServiceManager -ServiceID "7971f918-a847-4430-9279-4a52d1efe18d" -Confirm:$false
Install-WindowsUpdate -AcceptAll -MicrosoftUpdate -AutoReboot