home *** CD-ROM | disk | FTP | other *** search
/ 3D Madness! Companion CD / 3DMADNESS.iso / dosshow / instzero.bat < prev   
DOS Batch File  |  1994-09-06  |  4KB  |  76 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 ║  ZeRo Computing Libraries 3-D Demos                        ║
  8. ECHO ║  DISK INSTALLATION                                         ║
  9. ECHO ║                                                            ║
  10. ECHO ║  You have chosen to install this software to your %1 hard  ║
  11. ECHO ║  drive. The files will take up about 3.5M of space.        ║
  12. ECHO ║                                                            ║
  13. ECHO ║                                                            ║
  14. ECHO ║  If this is NOT what you want to do, press the Ctrl + C    ║
  15. ECHO ║  keys to end this batch program.                           ║
  16. ECHO ║                                                            ║
  17. ECHO ╚════════════════════════════════════════════════════════════╝
  18. ECHO.
  19. ECHO.
  20. ECHO.
  21. PAUSE 
  22. CLS
  23. ECHO ┌────────────────────────────────────────────────────────────────┐
  24. ECHO │ The software will now be copied copied to your %1 hard drive.  │
  25. ECHO │ You'll see a message on your screen telling you when the       │
  26. ECHO │ installation is finished.                                      │
  27. ECHO └────────────────────────────────────────────────────────────────┘
  28. ECHO.
  29. MD %1\ZERODEMO
  30. MD %1\ZERODEMO\VIEW3D
  31. MD %1\ZERODEMO\WAVE3D
  32. ECHO.
  33. COPY \DOSSHOW\ZERO\VIEW3D\*.*  %1\ZERODEMO\VIEW3D
  34. COPY \DOSSHOW\ZERO\WAVE3D\*.*  %1\ZERODEMO\WAVE3D
  35. CLS
  36. ECHO 
  37. ECHO.
  38. ECHO ╔═════════════════════════════════════════════════════════════════════════╗
  39. ECHO ║                                                                         ║
  40. ECHO ║ The installation of the ZeRo Computing Libraries 3-D Demos is finished! ║
  41. ECHO ║                                                                         ║
  42. ECHO ║ You'll find the files in the %1\ZERODEMO directory of your hard drive.  ║
  43. ECHO ║ There are two different demos, located in the VIEW3D and WAVE3D         ║
  44. ECHO ║ subdirectories. Read the README.DOC file in each directory for more     ║
  45. ECHO ║ information on running these demos.                                     ║
  46. ECHO ║                                                                         ║
  47. ECHO ║ NOTE: You MUST have a co-processor chip in your system to run these     ║
  48. ECHO ║       demos (386SX or 486SX computers don't have a co-processor).       ║
  49. ECHO ║                                                                         ║
  50. ECHO ╚═════════════════════════════════════════════════════════════════════════╝
  51. ECHO.
  52. ECHO.
  53. PAUSE 
  54. GOTO FINISHED
  55. :NEED_DRIVE
  56. CLS
  57. ECHO 
  58. ECHO.
  59. ECHO ┌─────────────────────────────────────────────────────────────┐
  60. ECHO │ You have not specified the correct name of your hard drive. │
  61. ECHO │ For the installation to work, you need to type              │
  62. ECHO │                                                             │
  63. ECHO │ INSTALL drive:                                              │
  64. ECHO │                                                             │
  65. ECHO │ (drive: is the drive letter of your hard drive)             │
  66. ECHO │                                                             │
  67. ECHO │ For example, to install to your C: drive...                 │
  68. ECHO │                                                             │
  69. ECHO │ INSTALL C:                                                  │
  70. ECHO │                                                             │
  71. ECHO └─────────────────────────────────────────────────────────────┘
  72. ECHO.
  73. ECHO.
  74. ECHO.
  75. :FINISHED
  76.