home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 420.img / XENOVGA.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1991-01-28  |  1KB  |  49 lines

  1. echo off
  2. rem XENOCIDE install (256 color, 1 disk)
  3. if "%1" == "" goto nodrive
  4. echo *  
  5. echo * XENOCIDE install for VGA or MCGA.
  6. echo *   
  7. echo * This batch file will install the VGA/MCGA version 
  8. echo * of XENOCIDE to a hard disk.
  9. echo *    
  10. echo * Press CTRL-C to cancel install, or
  11. pause
  12. echo Making subdirectory %1\XENOCIDE
  13. md %1\XENOCIDE
  14. if errorlevel 1 goto cantcreate
  15. echo Copying files...
  16. copy *.* %1\XENOCIDE > nul
  17. echo *   
  18. echo * Installation complete.  To play XENOCIDE, change the default drive
  19. echo * and path to the drive and directory containing XENOCIDE.  For example:
  20. echo *   
  21. echo *    C: [enter]
  22. echo *    CD \XENOCIDE [enter]
  23. echo *    XENO [enter]
  24. echo *
  25. goto exit
  26. :cantcreate
  27. echo *
  28. echo * Unable to create the directory
  29. echo * Installation not done.
  30. echo *
  31. goto exit
  32. :nodrive
  33. echo *
  34. echo * To install XENOCIDE, the current drive must be the drive containing 
  35. echo * the XENOCIDE master disk.  You must specify the drive on which to 
  36. echo * install the game.  The drive must end with a ":".  For example, to 
  37. echo * install XENOCIDE on drive C: from a floppy in drive A:, type:
  38. echo *    
  39. echo *    A: [enter]
  40. echo *    INSTALL C: [enter]
  41. echo *     
  42. echo * You may also specify a directory path.  This directory must 
  43. echo * already exist.  For example: 
  44. echo *   
  45. echo *    A: [enter]
  46. echo *    INSTALL C:GAMES [enter]
  47. echo *   
  48. :exit
  49.