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