Post

Archive - Windows Update reset

Archive - Windows Update reset

Stop services

1
2
3
4
net stop cryptSvc
net stop bits
net stop msiserver
net stop wuauserv

Move folder

1
2
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 Catroot2.old

Remove old rename

1
2
del /f C:\Windows\SoftwareDistribution.old
del /f C:\Windows\System32\Catroot2.old

Start services

1
2
3
4
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
This post is licensed under CC BY 4.0 by the author.
The information on this site is provided as-is, without warranty of any kind. Use it at your own risk.