home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 August - Disc 3
/
chip_20018103_hu.iso
/
segedlet
/
arj270.exe
/
TESTARJ.BAT
< prev
next >
Wrap
DOS Batch File
|
1999-09-30
|
2KB
|
40 lines
REM TESTARJ.BAT, ARJ, 08/04/99
echo off
echo .
echo TESTARJ.BAT - batch file to test the reliability of ARJ
echo .
echo This is a batch file to test the reliability of ARJ compressing and
echo decompressing all of your files. This test will take a LONG TIME
echo (HOURS, MAYBE DAYS) and will process all of the files on your C: drive
echo in six phases. You can interrupt or shorten any test phase by
echo pressing CTRL BREAK. You can also shorten this test by editing this
echo batch file and deleting the lines with -m2, -m3, and -m4. This test
echo will create files named TESTVOL$.### and then delete them. If the
echo test proceeds to its end successfully, you will know that ARJ is
echo compatible with your computer and its files.
echo .
echo Please NOTE that this program is very CPU and DISK intensive and will
echo strongly stress a computer system possibly revealing hidden software
echo or hardware problems.
echo .
echo COMMAND SYNTAX: testarj execute
echo .
if NOT "%1" == "execute" goto end
echo on
ARJ a testvol$.000 c:\*.* -i1 -jm -r -v360dtestvol$.* -xtestvol$.* -xtestarj.inx -y -jf -jitestarj.inx -jt1 -jv -hq2 -hk
if errorlevel 1 pause
ARJ a testvol$.000 c:\*.* -i1 -m1 -r -v360dtestvol$.* -xtestvol$.* -xtestarj.inx -y -jf -jitestarj.inx -jt1 -jv -hq2 -hk
if errorlevel 1 pause
ARJ a testvol$.000 c:\*.* -i1 -m2 -r -v360dtestvol$.* -xtestvol$.* -xtestarj.inx -y -jf -jitestarj.inx -jt1 -jv -hq2 -hk
if errorlevel 1 pause
ARJ a testvol$.000 c:\*.* -i1 -m3 -r -v360dtestvol$.* -xtestvol$.* -xtestarj.inx -y -jf -jitestarj.inx -jt1 -jv -hq2 -hk
if errorlevel 1 pause
ARJ a testvol$.000 c:\*.* -i1 -m4 -r -v360dtestvol$.* -xtestvol$.* -xtestarj.inx -y -jf -jitestarj.inx -jt1 -jv -hq2 -hk
if errorlevel 1 pause
ARJ a testvol$.000 c:\*.* -i1 -m0 -r -v360dtestvol$.* -xtestvol$.* -xtestarj.inx -y -jf -jitestarj.inx -jt1 -jv -hq2 -hk
if errorlevel 1 pause
del testvol$.*
REM end of test
:end