๐ง System Repair
Windows OS Repair Commands
SFC, DISM, CHKDSK, and Windows Update service repair via Command Prompt
โพ
Repairing Windows OS using built-in tools via elevated Command Prompt โ SFC, DISM, CHKDSK, and Windows Update reset.
Method 1 โ SFC: Scans and repairs corrupted system files
sfc /scannow
Method 2 โ DISM: Repairs the Windows image (use if SFC fails)
DISM /Online /Cleanup-Image /RestoreHealth
Method 3 โ CHKDSK: Checks disk for bad sectors and filesystem errors
chkdsk C: /f /r
Method 4 โ Reset Windows Update
net stop wuauserv && net stop bits
del %windir%\SoftwareDistribution\*.* /s /q
net start wuauserv && net start bits