home *** CD-ROM | disk | FTP | other *** search
- REM TESTARJ3.BAT, ARJ, 08/04/99
- echo off
- echo .
- echo TESTARJ3.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: testarj3 execute
- echo .
- if NOT "%1" == "execute" pause
- if NOT "%1" == "execute" goto end
-
- echo on
- ARJ32 a testvol$.000 c:\*.* -i1 -jm -r -v360dtestvol$.* -xtestvol$.* -xtestarj3.inx -y -jf -jitestarj3.inx -jt1 -jv -hq2 -hk
- if errorlevel 1 pause
- ARJ32 a testvol$.000 c:\*.* -i1 -m1 -r -v360dtestvol$.* -xtestvol$.* -xtestarj3.inx -y -jf -jitestarj3.inx -jt1 -jv -hq2 -hk
- if errorlevel 1 pause
- ARJ32 a testvol$.000 c:\*.* -i1 -m2 -r -v360dtestvol$.* -xtestvol$.* -xtestarj3.inx -y -jf -jitestarj3.inx -jt1 -jv -hq2 -hk
- if errorlevel 1 pause
- ARJ32 a testvol$.000 c:\*.* -i1 -m3 -r -v360dtestvol$.* -xtestvol$.* -xtestarj3.inx -y -jf -jitestarj3.inx -jt1 -jv -hq2 -hk
- if errorlevel 1 pause
- ARJ32 a testvol$.000 c:\*.* -i1 -m4 -r -v360dtestvol$.* -xtestvol$.* -xtestarj3.inx -y -jf -jitestarj3.inx -jt1 -jv -hq2 -hk
- if errorlevel 1 pause
- ARJ32 a testvol$.000 c:\*.* -i1 -m0 -r -v360dtestvol$.* -xtestvol$.* -xtestarj3.inx -y -jf -jitestarj3.inx -jt1 -jv -hq2 -hk
- if errorlevel 1 pause
- del testvol$.*
- REM end of test
- :end
-