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

  1. echo off
  2. rem XENOCIDE install (16 color, 2 disks)
  3. if "%1" == "" goto nodrive
  4. echo *  
  5. echo * XENOCIDE install for EGA, CGA, and TANDY 1000
  6. echo *   
  7. echo * This batch file will install the EGA, CGA, and 
  8. echo * TANDY 1000 version 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 * Please insert XENOCIDE DISK 2
  19. echo * 
  20. pause
  21. echo Copying files...
  22. copy *.* %1\XENOCIDE > nul
  23. echo *   
  24. echo * Installation complete.  To play XENOCIDE, change the default drive
  25. echo * and path to the drive and directory containing XENOCIDE.  For example:
  26. echo *   
  27. echo *    C: [enter]
  28. echo *    CD \XENOCIDE [enter]
  29. echo *    XENO [enter]
  30. echo *
  31. goto exit
  32. :cantcreate
  33. echo *
  34. echo * Unable to create the directory
  35. echo * Installation not done.
  36. echo *
  37. goto exit
  38. :nodrive
  39. echo *
  40. echo * To install XENOCIDE, the current drive must be the drive containing 
  41. echo * the XENOCIDE master disk.  You must specify the drive on which to 
  42. echo * install the game.  The drive must end with a ":".  For example, to 
  43. echo * install XENOCIDE on drive C: from a floppy in drive A:, type:
  44. echo *    
  45. echo *    A: [enter]
  46. echo *    INSTALL C: [enter]
  47. echo *     
  48. echo * You may also specify a directory path.  This directory must 
  49. echo * already exist.  For example: 
  50. echo *   
  51. echo *    A: [enter]
  52. echo *    INSTALL C:GAMES [enter]
  53. echo *   
  54. :exit
  55.