home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo Evasive Action demo
- rem Test for CD's files on default drive, is this the CD?
- if not exist \EACDEMO\EACTION.EQE goto usage
- rem Test for user's command line id target drive, proper usage?
- if %1!==! goto usage
- rem Is the argument drive letter valid?
- if not exist %1\nul goto usage
- rem Can we write to this supposed drive? Only have rights to this special dir
- md %1\EACDEMO
- rem Can we see into this new dir on the supposed target drive?
- if not exist %1\EACDEMO\nul goto usage
- rem Really try and write somethine, and activate the inactive exe
- copy \EACDEMO\EACTION.EQE %1\EACDEMO\EACTION.EXE
- if not exist %1\EACDEMO\EACTION.EXE goto usage
- Echo Installing the demo, this takes a few minutes..
- rem Make the subdirs
- md %1\EACDEMO\ART
- md %1\EACDEMO\ART\CHARSET
- md %1\EACDEMO\SHAPES
- md %1\EACDEMO\SND
- rem Copy the files, the first few dirs have about .6M or so
- copy \EACDEMO\*.* %1\EACDEMO
- rem Discard the inactive version of the exe
- del %1\EACDEMO\EACTION.EQE >nul
- copy \EACDEMO\ART\CHARSET\*.* %1\EACDEMO\ART\CHARSET >nul
- copy \EACDEMO\SHAPES\*.* %1\EACDEMO\SHAPES >nul
- copy \EACDEMO\SND\*.* %1\EACDEMO\SND >nul
- if not exist %1\EACDEMO\SND\EVA-WW3.KMD goto dblchk
- echo Installation about half done..
- rem This dir have 1M or so
- copy \EACDEMO\ART\*.* %1\EACDEMO\ART >nul
- :dblchk
- if exist %1\EACDEMO\ART\F18SPIN.FLI goto good
- Echo Installation appears to have failed.
- goto done
- :good
- %1
- cd \EACDEMO
- eaction
- goto done
- :usage
- echo To run the Evasive Action demo you first need to install it onto a hard
- echo disk drive. This batch file will install the demo, but you need to
- echo specify your hard disk drive when you run this installer, as below:
- echo demo_ea c:
- echo The above command would install the demo from a CD-ROM drive onto a
- echo C: drive (hard disk). Also note that you must be logged to your CD-ROM
- echo drive to run the installer. The demo takes about two megabytes of
- echo hard disk space.
- if not exist \EACDEMO\READ.ME goto done
- echo Press any key for more information on this demo..
- pause
- more <\EACDEMO\READ.ME
- :done
-