Situatie
Solutie
With SFC and DISM commands
Corrupted files can wreak havoc on a Windows PC, even if we’re talking only about one or a few corrupted file instances. Use Windows System File Checker (SFC) to quickly scan and replace corrupted files. To run the tool type:
sfc /scannow
And let it do its thing.
If problems persist, you can run Deployment Image Servicing and Management (DISM), which repairs the Windows image. The catch-all DISM command that should fix most issues is:
DISM /Online /Cleanup-Image /RestoreHealth
This will repair and replace damaged and corrupted files using Windows Update as the repair source, and is the recommended course of action if issues persist even after running sfc /scannow.
Leave A Comment?