If Windows is freezing or behaving erratically, there might be a problem with the filesystem or system files. Examples of erratic behavior include:
- blue screens
- crashing applications
- sluggish performance
- failed Windows updates
You can use the built-in Deployment Image Servicing and Management (DISM) and System File Checker (SFC) tools to try to fix the problem.
To use the DISM tool to fix problems with the filesystem or system files:
-
Press the Windows key + R to open the Run window.
-
In the Run window, type
cmd
then press Ctrl + Shift + Enter.This command opens the Command Prompt window with elevated (admin) privileges.
-
In the Command Prompt window, run the command:
DISM.exe /Online /Cleanup-Image /RestoreHealth
This command performs cleanup and recovery operations on the system files. For more information, see Microsoft’s documentation on repairing a Windows image.
-
After
DISM.exe
finishes, run the following command in the Command Prompt window:sfc /scannow
. This command scans all protected system files and replaces corrupted files. For more information, see Microsoft’s documentation on using SFC to repair missing or corrupted system files.
Run the sfc /scannow
command up to 3 times until you receive the message:
Windows Resource Protection did not find any integrity violations.
Note
If after running this command 3 times you do not receive the messageWindows Resource Protection did not find any integrity violations
, it is unlikely
that a problem with the filesystem or system files is the cause of Windows
freezing or behaving erratically.
Reboot the machine and test to see if Windows continues to freeze or behave erratically.