home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EZ Est 1999 July
/
EZ_Est_July_1999_July_1999.iso
/
EZCHKDSK.BAT
next >
Wrap
DOS Batch File
|
1996-05-29
|
600b
|
37 lines
@echo off
if %1.== CHKF. goto CHK_DSKF
if %1.== CHK. goto CHK_DSK
if %1.== DBL. goto DBL_DSK
if %1.== DRV. goto DRV_DSK
if %1.== SCAN. goto SCAN_DSK
if %1.== SCANW. goto SCANW_DSK
if %1.== PRT. goto P_README
:CHK_DSKF
chkdsk /f < %2:\TMP.NO > %2:\chkdsk.log
goto END
:CHK_DSK
chkdsk < %2:\TMP.NO > %2:\chkdsk.log
goto END
:DBL_DSK
dblspace /info > %2:\DBDISK.TMP
goto END
:DRV_DSK
drvspace /info > %2:\DBDISK.TMP
goto END
:SCAN_DSK
scandisk /ALL /AUTOFIX /NOSUMMARY /NOSAVE
goto END
:SCANW_DSK
scandskw /a /n
goto END
:P_README
print %3 < %2:\TMP.PRT
:END