home *** CD-ROM | disk | FTP | other *** search
/ Ultimate Game Collection / XULTI.ISO / 442 / install.bat < prev   
DOS Batch File  |  1996-08-27  |  732b  |  30 lines

  1. @echo off
  2. cls
  3. if "%1" == "" goto NOPARAMS
  4.  
  5. :PARAMS
  6. echo The Jagged Alliance DEADLY GAMES playable demo will be installed in
  7. echo %1. If you do NOT want to install the demo, press CTRL + BREAK and
  8. echo terminate this batch job, otherwise
  9. pause
  10.  
  11. dgdemo -d -o %1
  12. echo Change to %1 and type DEADLY to view the README and start the demo...
  13.  
  14. goto END
  15.  
  16. :NOPARAMS
  17. echo The Jagged Alliance DEADLY GAMES playable demo will be installed in
  18. echo C:\DGDEMO. If you do NOT want to install the demo there, please press
  19. echo CTRL + C to terminate this batch job and type INSTALL [path], otherwise
  20. pause
  21.  
  22. dgdemo -d -o C:\DGDEMO
  23. echo Change to C:\DGDEMO and Type DEADLY to view the README and start the demo...
  24.  
  25.  
  26. :END
  27.  
  28.  
  29.  
  30.