Advertisement
VADemon

sfc /scannow ERROR - could not start the repair service

Nov 26th, 2018
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. SOLUTION:
  2. You're probably trying to run these commands from a 32-bit cmd.exe/shell/whatever. You need to execute these commands from a 64-bit console.
  3.  
  4. In my case, I used to start "cmd.exe" from a 32-bit File Explorer. No matter whether you go to System32/cmd.exe or SysWOW64/cmd.exe - it would start the 32-bit cmd.exe
  5.  
  6. Easiest ways:
  7. a) Win+R, and enter "cmd.exe" it should start the 64-bit binary.
  8. b) Using Task Manager or ProcessExplorer in 64-bit, "Run" the "cmd.exe" from there.
  9. =========
  10.  
  11. C:\>sfc /scannow
  12.  
  13. Windows Resource Protection could not start the repair service.
  14.  
  15. ---------
  16.  
  17. C:\>net start trustedinstaller
  18. The requested service has already been started.
  19.  
  20. ---------
  21.  
  22. C:\>Dism /Online /Cleanup-Image /ScanHealth
  23.  
  24. Deployment Image Servicing and Management tool
  25. Version: 6.1.7600.16385
  26.  
  27.  
  28. Error: 11
  29.  
  30. You cannot service a running 64-bit operating system with a 32-bit version of DISM.
  31. Please use the version of DISM that corresponds to your computer's architecture.
  32.  
  33. The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement