home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 14 / CD_ASCQ_14_0694.iso / maj / 4472 / install.bat next >
DOS Batch File  |  1994-03-30  |  2KB  |  69 lines

  1. @echo off
  2. :: Lets Clear the screen and get to work
  3. cls
  4. Echo Welcome to Doe Entertainment (R) (c)1994
  5. Echo Enclosed is Quatra Command(tm) by Doe Entertainment(R)
  6. Echo .
  7. if %1x == x goto help
  8. if %2x == x goto help
  9. Echo This will copy all the Quatra Command(tm)
  10. Echo files to %2\Quatra
  11. Echo .
  12. Echo Press Ctrl Break to abort
  13. Echo or
  14. Echo any other key now ... To continue
  15. pause >nul
  16. :: overwrite and create the Quatra directory on the
  17. :: drive specified by the user.
  18. %1Unzip -d -o %1QCWGAME.ZIP %2\
  19.  
  20. :: copy the PlayDoe.ini file if there is a windir enviroment varible
  21. if %windir%x == x goto NOWINDIR
  22.  
  23. :: There was a environment variable to copy to
  24. copy %2\Quatra\PLAYDOE.INI %windir%
  25. goto HOWTOO
  26.  
  27. :NOWINDIR
  28. :: if there is no windir environment variable then tell user
  29. :: to copy the file..
  30. echo .
  31. echo *************************************************
  32. echo * You must copy the %2\Quatra\PLAYDOE.INI file  
  33. echo * to your windows directory.
  34. echo *************************************************
  35. echo .
  36. Echo Quatra Command(tm) Now Installed in the %2\Quatra
  37. Echo .
  38. echo Please Run Windows...
  39. goto winrun
  40.  
  41. :HOWTOO
  42. :: Tell User how to run the program
  43. Echo .
  44. Echo Quatra Command(tm) Now Installed in the %2\Quatra
  45. Echo .
  46.  
  47. :WinRun
  48. :: Now That they know how, lets put them there
  49. echo .
  50. echo Choose RUN from the File menu
  51. echo and enter %2\Quatra\QUATRA.EXE
  52. echo .
  53. Echo Press any key to continue
  54. pause>nul
  55. goto END
  56.  
  57. :help
  58. echo Quatra Installation error
  59. echo game: QUATRA COMMAND(tm)
  60. echo ------------------------------------------------------------------
  61. echo Usage: INSTALL [source:] [destination:]
  62. echo ------------------------------------------------------------------
  63. echo Example:  INSTALL A: C:  -- Will install Quatra from A: to the C: drive
  64. echo -
  65. Echo Press any key to continue
  66. pause >nul
  67.  
  68. :END
  69.