home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / t / tsenguti.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1989-09-05  |  3KB  |  51 lines

  1. echo off
  2. if x%1==x goto noparam
  3. cls
  4. echo              ╔═══════════════════════════════════════════╗
  5. echo              ║                          ║
  6. echo              ║           ET4000 Utilities               ║
  7. echo              ║                          ║
  8. echo              ║        PRELIMINARY Version 1.xx           ║
  9. echo              ║                                      ║
  10. echo              ║           09/05/89               ║
  11. echo              ║                          ║
  12. echo              ╚═══════════════════════════════════════════╝
  13. echo       ╔══════════════════════════════════════════════════════════════════╗
  14. echo       ║ The INSTALL program will copy the VGA Utilities if you continue. ║
  15. echo       ║                                                                  ║
  16. echo       ║ Press "Ctrl" and C at the same time to halt the INSTALL program. ║
  17. echo       ║                                                                  ║
  18. echo       ║ Press any key to continue the INSTALL program.                   ║
  19. echo       ╚══════════════════════════════════════════════════════════════════╝
  20. pause >nul
  21. md %1
  22. cls
  23. copy *.* %1\*.* /v
  24. goto ok
  25. :noparam
  26. cls
  27. echo       ╔═════════════════════════════════════════════════════════════╗
  28. echo       ║                                                             ║
  29. echo       ║  The INSTALL program requires a drive/directory parameter.  ║
  30. echo       ║                                                             ║
  31. echo       ║  EXAMPLES:                                                  ║
  32. echo       ║                                                             ║
  33. echo       ║  INSTALL B: - to install utilities on drive B               ║
  34. echo       ║                                                             ║
  35. echo       ║  INSTALL C: - to install utilities on drive C               ║
  36. echo       ║                                                             ║
  37. echo       ║  INSTALL C:\UTIL - to install utilities in directory        ║
  38. echo       ║                    "UTIL" on drive C                        ║
  39. echo       ║                                                             ║
  40. echo       ╚═════════════════════════════════════════════════════════════╝
  41. goto end
  42. :ok
  43. cls
  44. echo       ╔═════════════════════════════════════════════════════════════════╗
  45. echo       ║                                                                 ║
  46. echo       ║  The INSTALL program has copied the VGA utilities to the        ║
  47. echo       ║  drive/directory that you specified.                            ║
  48. echo       ║                                                                 ║
  49. echo       ╚═════════════════════════════════════════════════════════════════╝
  50. :end
  51.