Advertisement
Guest User

Clear windows update temp folders

a guest
Jul 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. right click start, command prompt (admin)
  2.  
  3. net stop wuauserv
  4.  
  5. if wuauserv didn't stop:
  6. open services and manually set it to disabled
  7. reboot, then open command prompt again and continue from here
  8.  
  9. net stop cryptSvc
  10. net stop bits
  11. net stop msiserver
  12.  
  13. ren %SystemDrive%\Windows\SoftwareDistribution SoftwareDistribution.old
  14. ren %SystemDrive%\Windows\System32\catroot2 catroot2.old
  15.  
  16. if wuauserv was set to disabled above:
  17. set it to automatic
  18.  
  19. net start wuauserv
  20. net start cryptSvc
  21. net start bits
  22. net start msiserver
  23.  
  24. reboot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement