web-dev-qa-db-ja.com

オプションの更新とともにWindowsの更新を自動化するPowershellスクリプト

以下のPowerShellスクリプトを使用してWindowsを更新していた https://gallery.technet.Microsoft.com/scriptcenter/Execute-Windows-Update-fc6acb16#content

Windowsの更新で正常に動作します。しかし、Microsoft Updatesをインストール/更新しません

重要なオプションの更新の両方を自動化するスクリプトを探しています未満。

enter image description here

このスクリプトを変更するにはどうすればよいですか? (スクリプトは上記のリンクにあります)

1
kudlatiger

このモジュールは、Microsoftアップデートを使用するように構成できます。

Microsoft Updateを使用してWindows更新を強制し、すべてを受け入れて再起動する

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