Skip to content

Instantly share code, notes, and snippets.

@syntax-tm
Last active April 16, 2024 22:24
Show Gist options
  • Save syntax-tm/30e758cd16fa7fd2cc85a3cb5d675b58 to your computer and use it in GitHub Desktop.
Save syntax-tm/30e758cd16fa7fd2cc85a3cb5d675b58 to your computer and use it in GitHub Desktop.
:: use System File Checker (SFC) to repair any system issues
SFC /scannow
:: performs advanced system scan looking for problems
DISM /Online /Cleanup-Image /ScanHealth
:: if there are problems with the system image, RestoreHealth will attempt to
:: automatically repair any issues
DISM /Online /Cleanup-Image /RestoreHealth
:: run SFC again after DISM to verify there are no detected issues
SFC /scannow
#Requires -RunAsAdministrator
# use System File Checker (SFC) to repair any system issues
SFC /scannow
# performs advanced system scan looking for problems
DISM /Online /Cleanup-Image /ScanHealth
# if there are problems with the system image, RestoreHealth will attempt to
# automatically repair any issues
DISM /Online /Cleanup-Image /RestoreHealth
# run SFC again after DISM to verify there are no detected issues
SFC /scannow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment