home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 418.img / WAR2NEUA.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1990-12-15  |  2KB  |  98 lines

  1. echo off
  2. if "%1" == "" goto usage
  3.  
  4. rem am I on master A?
  5. if exist disk.1 goto proceed
  6. if exist disk.2 goto wrongdisk
  7. if exist disk.3 goto wrongdisk
  8. if not exist disk.1 goto usage
  9.  
  10. :proceed
  11. if not exist install.bat goto usage
  12.  
  13. rem must install onto a hard disk i.e. c: -> z:
  14. if %1==a: goto usage
  15. if %1==A: goto usage
  16. if %1==b: goto usage
  17. if %1==B: goto usage
  18.  
  19. echo 
  20. Hard Disk installation
  21. echo This will create a directory called \WARLORDS on your hard disk
  22. echo in your %1 directory and copy the game files into it.
  23.  
  24. pause
  25.  
  26. mkdir %1\warlords
  27.  
  28. echo 
  29.  
  30. Copying Disk 1 files now .....
  31. copy *.* %1\warlords    >nul:
  32.  
  33. if exist disk.2 goto skip1
  34. :loop1
  35. echo 
  36.  
  37. Please insert Disk 2 into current drive.
  38. pause
  39. if not exist disk.2 goto loop1
  40. :skip1
  41.  
  42. echo 
  43.  
  44. Copying Disk 2 files now .....
  45. copy *.* %1\warlords    >nul:
  46.  
  47. if exist disk.3 goto skip2
  48. :loop2
  49. echo 
  50.  
  51. Please insert Disk 3 into current drive.
  52. pause
  53. if not exist disk.3 goto loop2
  54. :skip2
  55.  
  56. echo 
  57.  
  58. Copying Disk 3 files now .....
  59. copy *.* %1\warlords    >nul:
  60.  
  61. echo 
  62.  
  63. Warlords is now installed, the game can be played by typing:
  64. echo    %1
  65. echo    cd \warlords
  66. echo    warlords
  67. goto exit
  68.  
  69. :wrongdisk
  70. echo Hard Disk install program for Warlords
  71.  
  72. echo ═══════════════════════════════════════
  73. echo 
  74. Place Disk 1 in drive before attempting install.
  75. echo 
  76.  
  77.  
  78. goto exit
  79.  
  80. :usage
  81. echo Hard Disk install program for Warlords
  82.  
  83. echo ═══════════════════════════════════════
  84. echo 
  85. Place Disk 1 in drive a: or drive b: and go to that drive and type 
  86. echo "INSTALL DRIVE:" where DRIVE: is your hard disk.
  87. echo 
  88.  
  89. For example, if you want to copy the game from your a: drive to 
  90. echo the c: drive on your hard disk you would type
  91. echo        A:        [enter]
  92. echo        INSTALL C:[enter]
  93. echo If your hard disk has a drive letter other than C: use its
  94. echo letter instead.
  95.  
  96.  
  97. :exit
  98.