Changes between Initial Version and Version 1 of Fix Windows Update


Ignore:
Timestamp:
11/15/23 09:18:12 (6 months ago)
Author:
Paul Kulda
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Fix Windows Update

    v1 v1  
     1= Fix Windows Update =
     2
     3== Fix Windows Update ==
     4
     5{{{
     6net stop wuauserv
     7
     8net stop cryptsvc
     9
     10Now, open File Explorer, navigate to C:\ Windows and locate the SoftwareDistribution folder.
     11
     12Delete the folder.
     13
     14Open Command Prompt again in administrator mode.
     15
     16Type the below-mentioned commands and press enter. It will start the Windows Update Service.
     17
     18net start cryptsvc
     19
     20OR
     21
     22net stop bits
     23
     24net stop wuauserv
     25
     26net stop appidsvc
     27
     28net stop cryptsvc
     29
     30Del "%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\*.*"
     31
     32rmdir %systemroot%\SoftwareDistribution /S /Q
     33
     34rmdir %systemroot%\system32\catroot2 /S /Q
     35
     36regsvr32.exe /s atl.dll
     37
     38regsvr32.exe /s urlmon.dll
     39
     40regsvr32.exe /s mshtml.dll
     41
     42netsh winsock reset
     43
     44netsh winsock reset proxy
     45
     46net start bits
     47
     48net start wuauserv
     49
     50net start appidsvc
     51
     52net start cryptsvc
     53
     54}}}