Windows 10的指令式手動更新, 有別於Windows 7。 因為安全性問題,指令式手動更新都改為只可是管理員級才可執行。 而且步驟也有一定的要求: 1) 以ADMINISTRATOR級打開POWERSHELL 2) 鍵入Install-Module PSWindowsUpdate 安裝指定的模組, 如果出現 a)需要 NuGet 提供者才能繼續, 請按Y+ENTER。 b) Untrusted Repository未受信任的存放庫警告, 請按A 及ENTER, A即是"Yes to All" 3) 鍵入Get-WindowsUpdate + ENTER檢查有什麼可以安裝 4) 鍵入Install-WindowsUpdate + ENTER進行安裝, 如果出現是可確認安裝, 請按A 及ENTER。 ** 如果日後懶了, 可直接用"Get-WindowsUpdate -AcceptAll -Install -AutoReboot",一次過滿足晒3個願望, 下載, 安裝, 重啟。 ** 其實技術問題 : a) 可以用Get-Command -Module PSWindowsUpdate, 列出可用的指令 b) 如果Get-WindowsUpdate出現下面的錯誤, 是由於POWERSHELL未更新, 必須VERSION 7以上才可用。 Get-WindowsUpdate : 已在模組 'PSWindowsUpdate' 上找到 'Get-WindowsUpdate' 命令,但無法載入該模組。如需詳細資訊,請執行 'Import-Module PSWindowsUpdate'。 位於 線路:1 字元:1 + Get-WindowsUpdate + ~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (Get-WindowsUpdate:String) [], CommandNotFoundException + FullyQualifiedErrorId : CouldN...