home *** CD-ROM | disk | FTP | other *** search
/ Becoming a Computer Animator / COMPANIMATE.ISO / pc / dosmenu / inst3dws.bat < prev    next >
Encoding:
DOS Batch File  |  1994-07-03  |  3.6 KB  |  80 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 ║ 3D Workshop Demo                                       ║
  8. ECHO ║                                  Installation Program  ║
  9. ECHO ╚════════════════════════════════════════════════════════╝
  10. ECHO.
  11. ECHO.
  12. ECHO ┌────────────────────────────────────────────────────────┐
  13. ECHO │ You have chosen to install the 3D Workshop Demo        │
  14. ECHO │ to your %1 hard drive.                                 │
  15. ECHO │                                                        │
  16. ECHO │                                                        │
  17. ECHO │ The files will take up about 4 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\3DWKSHOP
  38. MD %1\3DWKSHOP
  39. XCOPY *.* /S /E %1\3DWKSHOP\
  40. CD\
  41. CLS
  42. ECHO 
  43. ECHO.
  44. ECHO ╔═════════════════════════════════════════════════════════════════════╗
  45. ECHO ║                                                                     ║
  46. ECHO ║  The disk installation for the 3D Workshop Demo is complete!        ║
  47. ECHO ║                                                                     ║
  48. ECHO ║  You'll find the files in the %1\3DWKSHOP directory of your         ║
  49. ECHO ║  hard drive.  To start the demo, change to this directory, type     ║
  50. ECHO ║  3DWSLITE and press Enter.                                          ║
  51. ECHO ║                                                                     ║
  52. ECHO ╚═════════════════════════════════════════════════════════════════════╝
  53. ECHO.
  54. ECHO.
  55. ECHO.
  56. ECHO.
  57. PAUSE
  58. GOTO FINISHED
  59. :NEED_DRIVE
  60. CLS
  61. ECHO 
  62. ECHO.
  63. ECHO    ┌─────────────────────────────────────────────────────────────┐
  64. ECHO    │                                                             │
  65. ECHO    │ You have not specified the correct name of your hard drive. │
  66. ECHO    │ For the installation to work, you need to type              │
  67. ECHO    │                                                             │
  68. ECHO    │ INSTALL drive:                                              │
  69. ECHO    │                                                             │
  70. ECHO    │ (drive: is the drive letter of your hard drive)             │
  71. ECHO    │                                                             │
  72. ECHO    │ For example, to install to your C: drive...                 │
  73. ECHO    │                                                             │
  74. ECHO    │ INSTALL C:                                                  │
  75. ECHO    │                                                             │
  76. ECHO    └─────────────────────────────────────────────────────────────┘
  77. ECHO.
  78. ECHO.
  79. :FINISHED
  80.