home *** CD-ROM | disk | FTP | other *** search
/ 3D Madness! Companion CD / 3DMADNESS.iso / dosshow / instd3d.bat next >
DOS Batch File  |  1994-09-06  |  3KB  |  69 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 ║  Demo 3-D                               DISK INSTALLATION  ║
  8. ECHO ║                                                            ║
  9. ECHO ║  You have chosen to install this software to your %1 hard  ║
  10. ECHO ║  drive. The files will take up about 1.1M of space.        ║
  11. ECHO ║                                                            ║
  12. ECHO ║                                                            ║
  13. ECHO ║  If this is NOT what you want to do, press the Ctrl + C    ║
  14. ECHO ║  keys to end this batch program.                           ║
  15. ECHO ║                                                            ║
  16. ECHO ╚════════════════════════════════════════════════════════════╝
  17. ECHO.
  18. ECHO.
  19. ECHO.
  20. PAUSE 
  21. CLS
  22. ECHO ┌────────────────────────────────────────────────────────────────┐
  23. ECHO │ The software will now be copied copied to your %1 hard drive.  │
  24. ECHO │ You'll see a message on your screen telling you when the       │
  25. ECHO │ installation is finished.                                      │
  26. ECHO └────────────────────────────────────────────────────────────────┘
  27. ECHO.
  28. MD %1\DEMO3D
  29. ECHO.
  30. COPY \DOSSHOW\DEMO3D\*.*  %1\DEMO3D
  31. CLS
  32. ECHO 
  33. ECHO.
  34. ECHO ╔═════════════════════════════════════════════════════════════════════════╗
  35. ECHO ║                                                                         ║
  36. ECHO ║ The installation of Demo 3-D is finished!                               ║
  37. ECHO ║                                                                         ║
  38. ECHO ║ You'll find the files in the %1\DEMO3D directory of your hard drive.    ║
  39. ECHO ║ Change to that directory, type DEMO3D and press Enter to begin.         ║
  40. ECHO ║                                                                         ║
  41. ECHO ║                                                                         ║
  42. ECHO ╚═════════════════════════════════════════════════════════════════════════╝
  43. ECHO.
  44. ECHO.
  45. ECHO.
  46. PAUSE 
  47. GOTO FINISHED
  48. :NEED_DRIVE
  49. CLS
  50. ECHO 
  51. ECHO.
  52. ECHO ┌─────────────────────────────────────────────────────────────┐
  53. ECHO │ You have not specified the correct name of your hard drive. │
  54. ECHO │ For the installation to work, you need to type              │
  55. ECHO │                                                             │
  56. ECHO │ INSTALL drive:                                              │
  57. ECHO │                                                             │
  58. ECHO │ (drive: is the drive letter of your hard drive)             │
  59. ECHO │                                                             │
  60. ECHO │ For example, to install to your C: drive...                 │
  61. ECHO │                                                             │
  62. ECHO │ INSTALL C:                                                  │
  63. ECHO │                                                             │
  64. ECHO └─────────────────────────────────────────────────────────────┘
  65. ECHO.
  66. ECHO.
  67. ECHO.
  68. :FINISHED
  69.