home *** CD-ROM | disk | FTP | other *** search
/ ftp.sudleyplace.com / ftp.sudleyplace.com.tar / ftp.sudleyplace.com / binaries / max / maxtest.bat < prev    next >
DOS Batch File  |  2006-10-20  |  1KB  |  46 lines

  1. ECHO OFF
  2. cls
  3.  
  4. echo Q Newletter On-Line ----- Q & A --- Volume 3 * Issue I -----------------
  5. echo  
  6. echo Q. How can I tell, from a batch file, if 386MAX is installed?
  7. echo  
  8. echo A. DOS provides a batch file command to identify the presence of any
  9. echo resident software in the system.  The following batch file, TEST.BAT,
  10. echo shows how to use DOS's IF EXIST command to do just that.  In addition,
  11. echo TEST.BAT will also determine if EMS services are available.
  12. echo  
  13. echo 386MAX is (c) Copyright 1990, Qualitas, Inc.
  14. echo  
  15. pause
  16.  
  17. echo TEST.BAT
  18. rem ============================Top of File================================
  19.  
  20. echo off
  21. cls
  22.  
  23. if exist 386MAX$$ goto 386MAX-ON
  24. echo 386MAX is not installed.
  25. if exist EMMXXXX0 goto ODD-EMS
  26. echo EMS support is not available.
  27. goto END
  28.  
  29. :386MAX-ON
  30. if exist QMMXXXX0 goto EMS-OFF
  31. echo 386MAX is installed and EMS support is active.
  32. goto END
  33.  
  34. :EMS-OFF
  35. echo 386MAX is installed but EMS support is not available.
  36. echo 386MAX might be in OFF mode or EMS=0 is active.
  37. goto END
  38.  
  39. :ODD-EMS
  40. echo 386MAX is not installed.
  41. echo Another EMS driver is installed and active.
  42.  
  43. :END
  44. echo off
  45. rem ============================End of File================================
  46.