Changes between Initial Version and Version 1 of Windows Ten Update Service Hangs - Wont Update


Ignore:
Timestamp:
01/27/21 10:33:16 (3 years ago)
Author:
Paul Kulda
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Windows Ten Update Service Hangs - Wont Update

    v1 v1  
     1= Windows Ten Update Service Hangs - Wont Update =
     2
     3{{{
     4Restart Windows update service:
     51. Press Windows key and R key together to open Run dialog.
     62. Then type services.msc in the box and click OK to continue.
     73. In the Services window, scroll down to find Windows Update Service.
     84. Right-click it, select Properties, change its Startup type to Automatic, and change its Service status to Running.
     95. Then click Apply and OK to save the changes.
     106. After that, reboot your computer and run Windows Update again to check whether the error is sill occuring and if its please perform other solutions below.
     11
     12Fix Corrupted Windows Update Database:
     131. Type Command Prompt in the search box of Windows and choose the best-matched one.
     142. Then right-click to choose Run as administrator.
     153. In the Command Line window, type the following commands and hit Enter after each command.
     16net stop wuauserv
     17net stop cryptSvc
     18net stop bits
     19net stop msiserver
     20Ren C:\\Windows\\SoftwareDistribution SoftwareDistribution.old
     21Ren C:\\Windows\\System32\\catroot2 Catroot2.old
     22net start wuauservnet start cryptSvc
     23net start bits
     24net start msiserver
     254. Then wait for the process to be finished and close the command line window.
     265. Once all above processes are finished, reboot your computer and run Windows Update again to check whether you can install Windows updates successfully
     27and check whether the error that we could not complete the install because an update service was shutting down is fixed.
     28
     29also please include runnning the DISM and System File Checker tools just to make sure if there are corrupted Windows Files needed to repair.
     30Steps:
     311. Run Command Prompt as administrator.
     322. Type the command DISM.exe /Online /Cleanup-image /Restorehealth and hit Enter to continue. It may take several minutes for the command operation to be completed.
     333. After that, input the command sfc /scannow and hit Enter to continue. It may also take several minutes to complete the scanning process.
     34After finishing, exit the command line window.
     35}}}