Windows 更新「檢查更新」不執行任何操作

Windows 更新「檢查更新」不執行任何操作

我的 Windows 10 已經有一段時間沒有更新了。當我打開 Windows 更新時,我看到以下文字:

Your device is at risk because it's out of date and missing important security and quality updates. Let's get you back on track so Windows can run more securely. Select this button to get going: Check for updates

更新狀態

當我點擊 時Check for updates,沒有任何反應。檢查更新顯示大約兩秒鐘,然後我再次看到原始訊息。

到目前為止我沒有成功的嘗試:

  • Windows 更新疑難排解。 (沒有發現任何問題。)

  • 從 Microsoft 更新目錄下載最新的服務堆疊更新 (SSU)。 (安裝失敗。)

  • DISM.exe /Online /Cleanup-image /Restorehealth透過執行和修復 Windows 檔案損壞sfc /scannow。 (沒有發現任何問題。)

  • 中接受的答案我可以從命令列呼叫 Windows Update 嗎?。 (命令對我沒有任何作用)Get-WindowsUpdateInstall-WindowsUpdate

我有 Windows 10 教育版 1709(作業系統內部版本 16299.98)。最新成功的系統更新已Update for Windows 10 Version 1709 for x64-based Systems (KB4058043)安裝在 上2017-12-17。奇怪的是,諸如Windows Malicious Software Removal Tool和之類的東西Security Update for Adobe Flash Player for Windows 10仍然可以透過 Windows Update 進行更新。但Windows本身拒絕更新。

如何讓 Windows 更新正常運作?

編輯: 輸出Get-WindowsUpdateLog

答案1

每當 Windows 更新發生故障時,我都會執行我的漂亮腳本,請嘗試一下。您需要以管理員身份執行它:

@ECHO OFF
echo Simple Script to Reset / Clear Windows Update
echo.
PAUSE
echo.
attrib -h -r -s %windir%\system32\catroot2
attrib -h -r -s %windir%\system32\catroot2\*.*
net stop wuauserv
net stop CryptSvc
net stop BITS
ren %windir%\system32\catroot2 catroot2.old
ren %windir%\SoftwareDistribution sold.old
ren "%ALLUSERSPROFILE%\application data\Microsoft\Network\downloader" downloader.old
net Start BITS
net start CryptSvc
net start wuauserv
echo.
echo Task completed successfully...
echo.
PAUSE

相關內容