home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / b / basscl15.zip / BCINSTAL.BAT < prev    next >
DOS Batch File  |  1993-01-04  |  2KB  |  75 lines

  1. echo off
  2. cls
  3. if "%1" == "" goto usage
  4. if exist %1\bclass\nul goto goahead
  5. echo Creating BCLASS directory....
  6. mkdir %1\bclass
  7. :goahead
  8. copy bc.bat %1\
  9. echo Copied BC.BAT to root directory.....
  10. echo.
  11. cd %1\bclass
  12. copy *.ran %1\bclass
  13. copy *.asc %1\bclass
  14. copy *.map %1\bclass
  15. copy *.pic %1\bclass
  16. copy bcinstal.bat %1\bclass
  17. copy orderfrm.txt %1\bclass
  18. copy q&a.txt %1\bclass
  19. copy register.txt %1\bclass
  20. copy map.trn %1\bclass
  21. copy *.doc %1\bclass
  22. copy bassclas.exe %1\bclass
  23. copy bclass.doc %1\bclass
  24. if exist %1\bclass\bigfish.txt goto ask
  25. copy bigfish.txt %1\bclass
  26. copy bigstr.txt %1\bclass
  27. goto movealong
  28. :ask
  29. cls
  30. echo NOTE ********
  31. echo.
  32. echo The Bass Class installation is almost done, but a file of BIG FISH
  33. echo records has been found in the BCLASS directory.
  34. echo. 
  35. echo Continuing this installation will overwrite these records and your
  36. echo BIG STRINGER records, establishing new records to beat.
  37. echo.
  38. echo Press CTRL-BREAK then answer Y to the TERMINATE BATCH JOB question to
  39. echo stop the installation NOW and preserve these records. Press any other
  40. echo key to continue with the installation which will establish new
  41. echo minimum records to beat.
  42. echo.
  43. echo If you stop the installation now, change to the drive and directory where
  44. echo you installed the game, then type BASSCLAS to run it.
  45. echo.
  46. pause
  47. echo Replacing old BIG FISH and BIG STRINGER records with default values...
  48. copy bigfish.txt %1\bclass
  49. copy bigstr.txt %1\bclass
  50. goto movealong
  51. :movealong
  52. %1
  53. cls  
  54. echo -------------------------------------------------------------------
  55. echo Bass Class installation is completed. To run the program now, just type
  56. echo BASSCLAS (then press ENTER). To run it in the future, type BC (then ENTER).
  57. echo -------------------------------------------------------------------
  58. echo.
  59. echo If your Bass Class disk contains a README.DOC file, be sure to read it.
  60. echo It may contain last minute information about Bass Class.
  61. echo.
  62. echo To print the Bass Class manual, type COPY BCLASS.DOC PRN then press ENTER.
  63. echo.
  64. goto end
  65. :usage
  66. echo    You must specify a disk drive where Bass Class is to be installed:
  67. echo.
  68. echo    EXAMPLES:            bcinstal c: 
  69. echo                           -OR-
  70. echo                         bcinstal d:
  71. echo.
  72. echo    Notice the c: and the d: at the end of the command. These specify
  73. echo    where you want to install Bass Class.
  74. goto end
  75. :end