home *** CD-ROM | disk | FTP | other *** search
/ Windoware / WINDOWARE_1_6.iso / drivers / atiwn30 / install.bat next >
DOS Batch File  |  1992-07-16  |  4KB  |  100 lines

  1. echo off
  2. cls
  3. if ()==(%1) goto NO_ARG
  4. if not exist %1\system\setup.inf goto INVPATH
  5. goto DO_IT
  6. :NO_ARG
  7. echo                 ┌────────────────────────────────────┐
  8. echo                 │** VGA Wonder Windows 3.0 Drivers **│
  9. echo                 └────────────────────────────────────┘
  10. echo      This batch file needs to know where your Windows directory
  11. echo       is located in order to properly install the drivers.
  12. echo  
  13. echo                ┌┬────────────────────────────────────┬┐
  14. echo                ││ Usage: INSTALL [Windows Directory] ││
  15. echo                └┴────────────────────────────────────┴┘
  16. echo                      Example: INSTALL C:\WINDOWS
  17. echo  
  18. echo          ATI Customer Support (416) 756-0711 9am-5:30pm EST
  19. echo 
  20. goto DONE
  21. :INVPATH
  22. echo                 ┌────────────────────────────────────┐
  23. echo                 │** VGA Wonder Windows 3.0 Drivers **│
  24. echo                 └────────────────────────────────────┘
  25. echo  
  26. echo                   ERROR: Invalid path "%1"
  27. echo  
  28. echo           Please check the path to ensure that this points to a
  29. echo                         valid Windows directory.
  30. echo                ┌┬────────────────────────────────────┬┐
  31. echo                ││ Usage: INSTALL [Windows Directory] ││
  32. echo                └┴────────────────────────────────────┴┘
  33. echo                      Example: INSTALL C:\WINDOWS
  34. echo  
  35. echo          ATI Customer Support (416) 756-0711 9am-5:30pm EST
  36. echo 
  37. goto DONE
  38. :DO_IT
  39. cls
  40. echo                 ┌────────────────────────────────────┐
  41. echo                 │** VGA Wonder Windows 3.0 Drivers **│
  42. echo                 └────────────────────────────────────┘
  43. echo                          ─────────────────
  44. echo              This batch file will conveniently extract the
  45. echo                    VGA Wonder Windows 3.0 drivers.
  46. echo               ┌─────────────────────────────────────────┐
  47. echo               │ If you are prompted to overwrite a file │
  48. echo               │             press Y  for YES            │
  49. echo               └─────────────────────────────────────────┘
  50. echo               Press any key to continue the installation
  51. echo                         or CONTROL-C to abort.
  52. echo 
  53. pause >nul
  54. cls
  55. echo                 ┌────────────────────────────────────┐
  56. echo                 │** VGA Wonder Windows 3.0 Drivers **│
  57. echo                 └────────────────────────────────────┘
  58. echo                          ─────────────────
  59. echo Decompressing . . .
  60. win30 /e%1\SYSTEM
  61. if errorlevel == 0 goto OK
  62. goto ERROR
  63. :OK
  64. echo Process Complete. Press any key to continue.
  65. echo 
  66. pause >nul
  67. cls
  68. echo                 ┌────────────────────────────────────┐
  69. echo                 │** VGA Wonder Windows 3.0 Drivers **│
  70. echo                 └────────────────────────────────────┘
  71. echo                          ─────────────────
  72. echo                     ╒══════════════════════════╕
  73. echo                     │ Installation successful! │
  74. echo                     ╘══════════════════════════╛
  75. echo  
  76. echo The first step of the Windows 3.0 drivers is now complete. The next
  77. echo step is to tell Windows to use these drivers. Please read the README.WIN
  78. echo file for instructions on how to tell Windows to use these new drivers.
  79. echo This file is located in your %1\SYSTEM directory.
  80. echo 
  81. goto DONE
  82. :ERROR
  83. echo                 ┌────────────────────────────────────┐
  84. echo                 │** VGA Wonder Windows 3.0 Drivers **│
  85. echo                 └────────────────────────────────────┘
  86. echo                          ─────────────────
  87. echo                        ╒═════════════════════╕
  88. echo                        │ Installation Failed │
  89. echo                        ╘═════════════════════╛
  90. echo  
  91. echo  Please check the path that you specified and ensure it is correct.
  92. echo  If this batch file continues to present problems, please refer
  93. echo  to the README.1ST file for instructions on how to manually extract
  94. echo  the Windows drivers. If you continue to have problems, call ATI
  95. echo  Customer Support for assistance.
  96. echo  
  97. echo          ATI Customer Support (416) 756-0711 9am-5:30pm EST
  98. echo 
  99. :DONE
  100.