home *** CD-ROM | disk | FTP | other *** search
/ Challenge Pack 3 / Challenge Pack 3.iso / demo_ea.bat next >
Encoding:
DOS Batch File  |  1994-03-15  |  2.1 KB  |  56 lines

  1. @echo off
  2. echo Evasive Action demo
  3. rem Test for CD's files on default drive, is this the CD?
  4. if not exist \EACDEMO\EACTION.EQE goto usage
  5. rem Test for user's command line id target drive, proper usage?
  6. if %1!==! goto usage
  7. rem Is the argument drive letter valid?
  8. if not exist %1\nul goto usage
  9. rem Can we write to this supposed drive?  Only have rights to this special dir
  10. md %1\EACDEMO
  11. rem Can we see into this new dir on the supposed target drive? 
  12. if not exist %1\EACDEMO\nul goto usage
  13. rem Really try and write somethine, and activate the inactive exe 
  14. copy \EACDEMO\EACTION.EQE %1\EACDEMO\EACTION.EXE
  15. if not exist %1\EACDEMO\EACTION.EXE goto usage
  16. Echo Installing the demo, this takes a few minutes..
  17. rem Make the subdirs
  18. md %1\EACDEMO\ART
  19. md %1\EACDEMO\ART\CHARSET
  20. md %1\EACDEMO\SHAPES
  21. md %1\EACDEMO\SND
  22. rem Copy the files, the first few dirs have about .6M or so
  23. copy \EACDEMO\*.* %1\EACDEMO
  24. rem Discard the inactive version of the exe
  25. del %1\EACDEMO\EACTION.EQE >nul
  26. copy \EACDEMO\ART\CHARSET\*.* %1\EACDEMO\ART\CHARSET >nul
  27. copy \EACDEMO\SHAPES\*.* %1\EACDEMO\SHAPES >nul
  28. copy \EACDEMO\SND\*.* %1\EACDEMO\SND >nul
  29. if not exist %1\EACDEMO\SND\EVA-WW3.KMD goto dblchk
  30. echo Installation about half done..
  31. rem This dir have 1M or so
  32. copy \EACDEMO\ART\*.* %1\EACDEMO\ART >nul
  33. :dblchk
  34. if exist %1\EACDEMO\ART\F18SPIN.FLI goto good
  35. Echo Installation appears to have failed.
  36. goto done
  37. :good
  38. %1
  39. cd \EACDEMO
  40. eaction
  41. goto done
  42. :usage
  43. echo To run the Evasive Action demo you first need to install it onto a hard
  44. echo disk drive.  This batch file will install the demo, but you need to
  45. echo specify your hard disk drive when you run this installer, as below:
  46. echo      demo_ea c:
  47. echo The above command would install the demo from a CD-ROM drive onto a
  48. echo C: drive (hard disk).  Also note that you must be logged to your CD-ROM
  49. echo drive to run the installer.  The demo takes about two megabytes of
  50. echo hard disk space.
  51. if not exist \EACDEMO\READ.ME goto done
  52. echo Press any key for more information on this demo..
  53. pause
  54. more <\EACDEMO\READ.ME
  55. :done
  56.