home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / games / cws141.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-09-26  |  2KB  |  61 lines

  1. echo off
  2. cls
  3. echo ═══════════════════════════════════════════════════════
  4. echo    Install program for VGA Civil War Strategy v1.4
  5. echo ═══════════════════════════════════════════════════════
  6. echo  
  7.  
  8. if "%1" == "" goto howto
  9.  
  10. if exist cws.exe goto proceed
  11. if not exist cws.exe goto howto
  12.  
  13. :proceed
  14. if not exist install.bat goto howto
  15.  
  16. echo  
  17. echo Civil War installation
  18. echo This will create a directory called \CWSTRAT on the '%1' disk
  19. echo and copy the game files into it.
  20. echo  
  21. echo Hit Ctrl-C if you do NOT wish to continue
  22.  
  23. pause
  24.  
  25. echo Creating directory '\CWSTRAT' on '%1' drive
  26. mkdir %1\CWSTRAT
  27.  
  28. echo  
  29. echo Copying files
  30. xcopy *.* %1\CWSTRAT
  31. cls
  32. echo Changing to CWSTRAT Directory...
  33. %1
  34. cd\cwstrat
  35. echo  
  36. echo Civil War Strategy is now installed !
  37. echo To play the game type:
  38. echo CWS
  39. echo (On-line help is available from the game)
  40. echo .....................................................
  41. echo To see the online help, type:
  42. echo CWSDOC
  43. echo .....................................................
  44. echo You may then print the complete documentation
  45. echo from the file CWS.DOC
  46. goto done4
  47.  
  48. :howto
  49. echo Place Master Disk in drive and go to that drive and type
  50. echo "INSTALL DRIVE:" where DRIVE: is the TARGET drive.
  51. echo  
  52. echo EXAMPLE:
  53. echo To copy the game from the A: drive to the C: drive,
  54. echo you would type
  55. echo            A:          [enter]
  56. echo            INSTALL C:  [enter]
  57. echo If your target disk is a drive other than C: use its letter instead.
  58.  
  59. :done4
  60.  
  61.