home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 26 / CD_ASCQ_26_1295.iso / vrac / etree202.zip / RUNME.BAT < prev   
DOS Batch File  |  1995-10-13  |  1KB  |  49 lines

  1. @echo off
  2. rem  Etree 2.02b
  3. rem
  4.  
  5. echo Etree 2.02b
  6. echo Choose graphics driver.
  7.  
  8. echo  Is your card a ..
  9. choice /c:YN Mach 64
  10. if errorlevel 2 goto nomach
  11.    set GRX20DRV=mach64
  12.    goto foundcard
  13. :nomach
  14. choice /c:YN VESA
  15. if errorlevel 2 goto novesa
  16.    set GRX20DRV=VESA
  17.    goto foundcard
  18. :novesa
  19. choice /c:YN ET4000
  20. if errorlevel 2 goto noet
  21.    set GRX20DRV=et4000
  22.    goto foundcard
  23. :noet
  24. choice /c:YN CL5426
  25. if errorlevel 2 goto nocl5426
  26.    set GRX20DRV=cl5426
  27.    goto foundcard
  28. :nocl5426
  29. choice /c:YN ati28800
  30. if errorlevel 2 goto noati
  31.    set GRX20DRV=ati28800
  32.    goto foundcard
  33. :noati
  34.  
  35. echo No other cards are available, try finding a VESA driver for your card.
  36. echo A good VESA driver is  "UniVBE" from  SciTech Software.
  37. echo which is available from :
  38. echo   World Wide Web : http://www.scitechsoft.com
  39. echo   Internet/FTP        : ftp.scitechsoft.com
  40. echo   Compuserve          : GO VESA (file library 12)
  41. echo   America Online : Keyword VESA
  42. goto end
  43. :foundcard
  44. set GRXFONT=%1\fonts
  45. %1\etree
  46. set GRX20DRV=
  47. set GRXFONT=
  48. :end
  49.