home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / batutl / vidchk.arc / VID.BAT next >
Encoding:
DOS Batch File  |  1988-07-21  |  335 b   |  27 lines

  1. echo off
  2. video
  3. if errorlevel 5 goto unk  
  4. if errorlevel 4 goto vga  
  5. if errorlevel 3 goto ega
  6. if errorlevel 2 goto cga
  7. if errorlevel 1 goto mda
  8. echo unknown
  9. goto end
  10. :unk
  11. echo UNKNOWN
  12. goto end
  13. :mda
  14. echo MONO
  15. goto end
  16. :cga
  17. echo CGA
  18. goto end
  19. :ega
  20. echo EGA
  21. goto end
  22. :vga
  23. echo VGA
  24. goto end
  25. :error
  26. echo ERROR
  27. :end