home *** CD-ROM | disk | FTP | other *** search
/ Games Encyclopedia / gamesencyclopedia1995.iso / temp / stellar2 / heinstal.bat < prev    next >
DOS Batch File  |  1991-12-09  |  3KB  |  73 lines

  1. echo off
  2. cls
  3. echo ********** STELLAR EXPLORER Installation Utility **********
  4. echo -----------------------------------------------------------
  5. echo     This utility assumes that you will be installing the
  6. echo game from floppy drive A to hard drive C.  If this is NOT
  7. echo the correct configuration for your computer, type CTRL and
  8. echo C together to terminate installation.  The directory
  9. echo called \stellar will be created on your hard drive C...
  10. echo -----------------------------------------------------------
  11. pause
  12. echo Creating and opening the \stellar directory...
  13. echo -----------------------------------------------------------
  14. c:
  15. md stellar
  16. cd\stellar
  17. echo \stellar directory has been created...
  18. echo -----------------------------------------------------------
  19. echo Copying Environment Generator files to \stellar...
  20. copy a:*.* c:
  21. echo Environment Generator copied to \stellar...
  22. echo -----------------------------------------------------------
  23. echo     Insert the first Adventure Disk (#1) into drive A, then
  24. echo press a key to install the adventure on your hard drive C...
  25. echo -----------------------------------------------------------
  26. pause
  27. echo Copying Adventure Disk #1 files to \stellar...
  28. copy a:\talk\*.* c:
  29. copy a:\clues\*.* c:
  30. copy a:\tiles\*.* c:
  31. copy a:\maps\*.* c:
  32. copy a:\picts\*.* c:
  33. echo Adventure Disk #1 copied to \stellar...
  34. echo ------------------------------------------------------------
  35. echo     If your adventure has a second Adventure Disk (#2), 
  36. echo insert it into drive A, then press a key to install it onto
  37. echo hard drive C...
  38. echo     If you only have ONE Adventure Disk, type CTRL and C
  39. echo together to end the installation procedure here...
  40. echo ------------------------------------------------------------
  41. pause
  42. echo Copying Adventure Disk #2 files to \stellar...
  43. copy a:\talk\*.* c:
  44. copy a:\clues\*.* c:
  45. copy a:\tiles\*.* c:
  46. copy a:\maps\*.* c:
  47. copy a:\picts\*.* c:
  48. echo Adventure Disk #2 copied to \stellar...
  49. echo ------------------------------------------------------------
  50. echo     If your adventure has a third Adventure Disk (#3),
  51. echo insert it into drive A, then press a key to install it onto
  52. echo hard drive C...
  53. echo     If you only have TWO Adventure Disks, type CTRL and C
  54. echo together to end the installation procedure here...
  55. echo ------------------------------------------------------------
  56. pause
  57. echo Copying Adventure Disk #3 files to \stellar...
  58. copy a:\talk\*.* c:
  59. copy a:\clues\*.* c:
  60. copy a:\tiles\*.* c:
  61. copy a:\maps\*.* c:
  62. copy a:\picts\*.* c:
  63. echo Adventure Disk #3 copied to \stellar...
  64. echo ------------------------------------------------------------
  65. echo     This completes the installation procedure for
  66. echo STELLAR EXPLORER.  Type se1 from the \stellar directory
  67. echo to start the game.
  68. echo ENJOY !
  69.  
  70.  
  71.  
  72.  
  73.