Windows

用於自動更新 Windows 以及可選更新的 Powershell 腳本

  • June 26, 2020

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

它適用於Windows 更新。但它不會安裝/更新Microsoft 更新

我正在尋找自動執行重要可選更新的腳本,如下所示。

在此處輸入圖像描述

如何更改此腳本?(腳本可以在上面的連結中找到)

此模組可配置為使用 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

引用自:https://serverfault.com/questions/838118