home *** CD-ROM | disk | FTP | other *** search
/ Becoming a Computer Animator / COMPANIMATE.ISO / pc / dosmenu / instenvi.bat < prev    next >
Encoding:
DOS Batch File  |  1994-07-14  |  3.9 KB  |  84 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. CD \DOSDEMOS\ENVISAGE
  38. MD %1\EVI
  39. XCOPY *.* /S /E %1\EVI\
  40. CD\
  41. CLS
  42. ECHO 
  43. ECHO.
  44. ECHO ╔═════════════════════════════════════════════════════════════════════╗
  45. ECHO ║                                                                     ║
  46. ECHO ║  The disk installation for the Envisage Demo is complete!           ║
  47. ECHO ║                                                                     ║
  48. ECHO ║  You'll find the files in the %1\EVI directory of your hard         ║
  49. ECHO ║  hard drive.  To start the demo, change to this directory,          ║
  50. ECHO ║  type DEMO and press Enter. The DEMO.BAT file will set some         ║
  51. ECHO ║  important environment variables and run the Envisage demo.         ║
  52. ECHO ║                                                                     ║
  53. ECHO ║  To access the Envisage Demo menu, click the right mouse button,    ║
  54. ECHO ║  and the menu bar will appear at the top of the screen.             ║
  55. ECHO ║                                                                     ║
  56. ECHO ╚═════════════════════════════════════════════════════════════════════╝
  57. ECHO.
  58. ECHO.
  59. ECHO.
  60. ECHO.
  61. PAUSE
  62. GOTO FINISHED
  63. :NEED_DRIVE
  64. CLS
  65. ECHO 
  66. ECHO.
  67. ECHO    ┌─────────────────────────────────────────────────────────────┐
  68. ECHO    │                                                             │
  69. ECHO    │ You have not specified the correct name of your hard drive. │
  70. ECHO    │ For the installation to work, you need to type              │
  71. ECHO    │                                                             │
  72. ECHO    │ INSTALL drive:                                              │
  73. ECHO    │                                                             │
  74. ECHO    │ (drive: is the drive letter of your hard drive)             │
  75. ECHO    │                                                             │
  76. ECHO    │ For example, to install to your C: drive...                 │
  77. ECHO    │                                                             │
  78. ECHO    │ INSTALL C:                                                  │
  79. ECHO    │                                                             │
  80. ECHO    └─────────────────────────────────────────────────────────────┘
  81. ECHO.
  82. ECHO.
  83. :FINISHED
  84.