home *** CD-ROM | disk | FTP | other *** search
/ 3D Madness! Companion CD / 3DMADNESS.iso / dosshow / instsi.bat < prev    next >
DOS Batch File  |  1994-09-06  |  4KB  |  79 lines

  1. @ECHO OFF
  2. REM Installation program for "Stunt Island player"
  3. REM -----------------------------------------------------------------
  4. IF .%1==. GOTO NEED_DRIVE
  5. IF NOT EXIST %1\NUL GOTO NEED_DRIVE
  6. CLS
  7. ECHO.
  8. ECHO ╔════════════════════════════════════════════════════════════╗
  9. ECHO ║  Stunt Island player and movies                            ║
  10. ECHO ║  DISK INSTALLATION                                         ║
  11. ECHO ║                                                            ║
  12. ECHO ║  You have chosen to install this software to your %1 hard  ║
  13. ECHO ║  drive. The files will take up about 7 megabytes of space. ║
  14. ECHO ║                                                            ║
  15. ECHO ║                                                            ║
  16. ECHO ║  If this is NOT what you want to do, press the Ctrl + C    ║
  17. ECHO ║  keys to end this batch program.                           ║
  18. ECHO ║                                                            ║
  19. ECHO ╚════════════════════════════════════════════════════════════╝
  20. ECHO.
  21. ECHO.
  22. ECHO.
  23. PAUSE 
  24. CLS
  25. ECHO ┌────────────────────────────────────────────────────────────────┐
  26. ECHO │ The software will now be copied copied to your %1 hard drive.  │
  27. ECHO │ You'll see a message on your screen telling you when the       │
  28. ECHO │ installation is finished.                                      │
  29. ECHO └────────────────────────────────────────────────────────────────┘
  30. ECHO.
  31. MD %1\SIDEMO
  32. MD %1\SIDEMO\VAULT
  33. ECHO  
  34. COPY \DOSSHOW\STUNT\*.BIN %1\SIDEMO
  35. COPY \DOSSHOW\STUNT\INST.EXE %1\SIDEMO
  36. COPY \DOSSHOW\STUNT\INSTALL.CFG %1\SIDEMO
  37. COPY \DOSSHOW\STUNT\PLAYONE.EXE %1\SIDEMO
  38. COPY \DOSSHOW\STUNT\SETUP.BAT %1\SIDEMO
  39. COPY \DOSSHOW\STUNT\STUNT.DOC %1\SIDEMO
  40. COPY \DOSSHOW\STUNT\VAULT\*.* %1\SIDEMO\VAULT
  41. CLS
  42. ECHO 
  43. ECHO.
  44. ECHO ╔═════════════════════════════════════════════════════════════════════════╗
  45. ECHO ║                                                                         ║
  46. ECHO ║ The installation of the Stunt Island player and movies is finished!     ║
  47. ECHO ║                                                                         ║
  48. ECHO ║ You'll find the files in the %1\SIDEMO directory of your hard drive.    ║
  49. ECHO ║                                                                         ║
  50. ECHO ║ Read the file STUNT.DOC before playing any movies.                      ║
  51. ECHO ║                                                                         ║
  52. ECHO ╚═════════════════════════════════════════════════════════════════════════╝
  53. ECHO.
  54. ECHO.
  55. ECHO.
  56. PAUSE Press any key to continue...
  57. GOTO FINISHED
  58. :NEED_DRIVE
  59. CLS
  60. ECHO 
  61. ECHO.
  62. ECHO ┌─────────────────────────────────────────────────────────────┐
  63. ECHO │ You have not specified the correct name of your hard drive. │
  64. ECHO │ For the installation to work, you need to type              │
  65. ECHO │                                                             │
  66. ECHO │ INSTALL drive:                                              │
  67. ECHO │                                                             │
  68. ECHO │ (drive: is the drive letter of your hard drive)             │
  69. ECHO │                                                             │
  70. ECHO │ For example, to install to your C: drive...                 │
  71. ECHO │                                                             │
  72. ECHO │ INSTALL C:                                                  │
  73. ECHO │                                                             │
  74. ECHO └─────────────────────────────────────────────────────────────┘
  75. ECHO.
  76. ECHO.
  77. ECHO.
  78. :FINISHED
  79.