Wiki source code of Fix microsoft update cache
Last modified by IExp IT on 2026/04/08 10:37
Hide last authors
| author | version | line-number | content |
|---|---|---|---|
| |
1.1 | 1 | sfc /scannow |
| 2 | Dism.exe /Online /Cleanup-Image /RestoreHealth | ||
| 3 | sfc /scannow | ||
| 4 | |||
| |
2.1 | 5 | |
| 6 | |||
| 7 | powershell | ||
| 8 | |||
| 9 | Stop-Service wuauserv | ||
| 10 | |||
| 11 | Stop-Service bits | ||
| 12 | |||
| 13 | Remove-Item $env:windir\softwaredistribution -Recurse -Force | ||
| 14 | |||
| 15 | Start-Service wuauserv | ||
| 16 | |||
| 17 | exit | ||
| 18 | |||
| 19 | |||
| 20 | |||
| 21 | reboot | ||
| 22 | |||
| 23 | retry ... |