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

  1. @ECHO OFF
  2. IF .%1==. GOTO NEED_DRIVE
  3. IF NOT EXIST %1\NUL GOTO NEED_DRIVE
  4. CLS
  5. ECHO.
  6. ECHO ╔════════════════════════════════════════════════════════╗
  7. ECHO ║ Envisage Demo                                          ║
  8. ECHO ║                                  Installation Program  ║
  9. ECHO ╚════════════════════════════════════════════════════════╝
  10. ECHO.
  11. ECHO.
  12. ECHO ┌────────────────────────────────────────────────────────┐
  13. ECHO │ You have chosen to install the Envisage Demo           │
  14. ECHO │ to your %1 hard drive.                                 │
  15. ECHO │                                                        │
  16. ECHO │                                                        │
  17. ECHO │ The files will take up about 4.5 megabytes of space.   │
  18. ECHO │                                                        │
  19. ECHO │                                                        │
  20. ECHO │                                                        │
  21. ECHO │ If this is NOT what you want to do, press the          │
  22. ECHO │ Ctrl + C keys to stop this batch program.              │
  23. ECHO └────────────────────────────────────────────────────────┘
  24. ECHO.
  25. ECHO.
  26. ECHO.
  27. PAUSE Paused... press any key to continue the installation
  28. CLS
  29. ECHO.
  30. ECHO ┌───────────────────────────────────────────────────────────────────────┐
  31. ECHO │ The software for the demo will now be installed to your %1 hard       │
  32. ECHO │ drive. This will take a while, so be patient...                       │
  33. ECHO │                                                                       │
  34. ECHO │ You'll see a message telling you when the installation is finished.   │
  35. ECHO └───────────────────────────────────────────────────────────────────────┘
  36. ECHO.
  37. MD %1\EVI
  38. XCOPY \DOSDEMOS\ENVISAGE\*.* /S /E %1\EVI\
  39. CLS
  40. ECHO 
  41. ECHO.
  42. ECHO ╔═════════════════════════════════════════════════════════════════════╗
  43. ECHO ║                                                                     ║
  44. ECHO ║  The disk installation for the Envisage Demo is complete!           ║
  45. ECHO ║                                                                     ║
  46. ECHO ║  You'll find the files in the %1\EVI directory of your hard         ║
  47. ECHO ║  hard drive.  To start the demo, change to this directory,          ║
  48. ECHO ║  type DEMO and press Enter. The DEMO.BAT file will set some         ║
  49. ECHO ║  important environment variables and run the Envisage demo.         ║
  50. ECHO ║                                                                     ║
  51. ECHO ║  To access the Envisage Demo menu, click the right mouse button,    ║
  52. ECHO ║  and the menu bar will appear at the top of the screen.             ║
  53. ECHO ║                                                                     ║
  54. ECHO ╚═════════════════════════════════════════════════════════════════════╝
  55. ECHO.
  56. ECHO.
  57. ECHO.
  58. ECHO.
  59. PAUSE
  60. GOTO FINISHED
  61. :NEED_DRIVE
  62. CLS
  63. ECHO 
  64. ECHO.
  65. ECHO    ┌─────────────────────────────────────────────────────────────┐
  66. ECHO    │                                                             │
  67. ECHO    │ You have not specified the correct name of your hard drive. │
  68. ECHO    │ For the installation to work, you need to type              │
  69. ECHO    │                                                             │
  70. ECHO    │ INSTALL drive:                                              │
  71. ECHO    │                                                             │
  72. ECHO    │ (drive: is the drive letter of your hard drive)             │
  73. ECHO    │                                                             │
  74. ECHO    │ For example, to install to your C: drive...                 │
  75. ECHO    │                                                             │
  76. ECHO    │ INSTALL C:                                                  │
  77. ECHO    │                                                             │
  78. ECHO    └─────────────────────────────────────────────────────────────┘
  79. ECHO.
  80. ECHO.
  81. :FINISHED
  82.