var fDesc=new Array(); fDesc[0] = "CheckDisk is a wrapper program for chkdsk.exe, a console utility included in Windows.

CheckDisk provides a graphical front end for chkdsk.exe, making it easier to work with as well as adding a level of automation which I feel is quite necessary.

A tool originally intended for use by a bench technician on a tech bench system, CheckDisk is versatile in its environment and can be used in many end-user situations.

- Easy to use GUI for chkdsk-exe
- All optional chkdsk parameters available
- Scan up to 5 partitions consecutively
- Schedule autochk-exe to run on next startup
- Scan partitions until they return NO errors, or
- Limit the number of rescans on the selected partitions
- Use /F only on subsequent scans
- Easy to understand chkdsk-exe logging, with save option
- Option to save logs automatically
- Optional shutdown system when finished."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }