home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 August - Disc 3 / chip_20018103_hu.iso / segedlet / arj270.exe / TESTARJ.BAT < prev    next >
DOS Batch File  |  1999-09-30  |  2KB  |  40 lines

  1. REM TESTARJ.BAT, ARJ, 08/04/99
  2. echo off
  3. echo  .
  4. echo  TESTARJ.BAT - batch file to test the reliability of ARJ
  5. echo  .
  6. echo  This is a batch file to test the reliability of ARJ compressing and
  7. echo  decompressing all of your files.  This test will take a LONG TIME
  8. echo  (HOURS, MAYBE DAYS) and will process all of the files on your C: drive
  9. echo  in six phases.  You can interrupt or shorten any test phase by 
  10. echo  pressing CTRL BREAK.  You can also shorten this test by editing this
  11. echo  batch file and deleting the lines with -m2, -m3, and -m4.  This test
  12. echo  will create files named TESTVOL$.### and then delete them.  If the
  13. echo  test proceeds to its end successfully, you will know that ARJ is
  14. echo  compatible with your computer and its files.
  15. echo  .
  16. echo  Please NOTE that this program is very CPU and DISK intensive and will
  17. echo  strongly stress a computer system possibly revealing hidden software
  18. echo  or hardware problems.
  19. echo  .
  20. echo  COMMAND SYNTAX:  testarj execute
  21. echo  .
  22. if NOT "%1" == "execute" goto end
  23.  
  24. echo on
  25. ARJ a testvol$.000 c:\*.* -i1 -jm -r -v360dtestvol$.* -xtestvol$.* -xtestarj.inx -y -jf -jitestarj.inx -jt1 -jv -hq2 -hk
  26. if errorlevel 1 pause
  27. ARJ a testvol$.000 c:\*.* -i1 -m1 -r -v360dtestvol$.* -xtestvol$.* -xtestarj.inx -y -jf -jitestarj.inx -jt1 -jv -hq2 -hk
  28. if errorlevel 1 pause
  29. ARJ a testvol$.000 c:\*.* -i1 -m2 -r -v360dtestvol$.* -xtestvol$.* -xtestarj.inx -y -jf -jitestarj.inx -jt1 -jv -hq2 -hk
  30. if errorlevel 1 pause
  31. ARJ a testvol$.000 c:\*.* -i1 -m3 -r -v360dtestvol$.* -xtestvol$.* -xtestarj.inx -y -jf -jitestarj.inx -jt1 -jv -hq2 -hk
  32. if errorlevel 1 pause
  33. ARJ a testvol$.000 c:\*.* -i1 -m4 -r -v360dtestvol$.* -xtestvol$.* -xtestarj.inx -y -jf -jitestarj.inx -jt1 -jv -hq2 -hk
  34. if errorlevel 1 pause
  35. ARJ a testvol$.000 c:\*.* -i1 -m0 -r -v360dtestvol$.* -xtestvol$.* -xtestarj.inx -y -jf -jitestarj.inx -jt1 -jv -hq2 -hk 
  36. if errorlevel 1 pause
  37. del testvol$.*
  38. REM end of test
  39. :end
  40.