Checking and Restoring File Integrity in Windows

The “Data Rot” Menace

We have an ongoing debate here at Edge Webware, where some of us believe in the mysterious phenomena known as “data rot.” Although we debate this topic with a bit of tongue-in-cheek, there are instances where files can be corrupted.

More formally known as data degradation, system and program files can be corrupted by small regions of data on the hard drive becoming “dead,” where they no longer store the information properly. Generally the operating system handles this issue gracefully, re-assigning the data to another part where the data stores and reads properly, however there can be errors in the information when the data is relocated.

More commonly, however, is the corruption of system files by malware. Although we have anti-virus software to protect us, malware is getting more and more sophisticated to where bypassing the anti-virus is possible.

Never fear: Ever since Windows Vista, there’s been a set of tools available for Windows to check file integrity and help restore those files to their proper image.

Checking File Integrity

First, you want to check your system files to make sure all is in order, right?

Open a command prompt, running as administrator, and run this command:

[code]sfc /scannow[/code]

Now this will take some time to complete, however it will try fixing the files if it finds any are corrupted. If you get any reported errors where sfc can’t repair the files, you’ll want to run the second utility in the same command prompt:

[code]dism /online /cleanup-image /restorehealth[/code]

This second utility will also take some time to complete. After it is finished, run sfc again, making sure it has fixed all the files:

[code]sfc /scannow[/code]

It should report no problems this time.

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments