home *** CD-ROM | disk | FTP | other *** search
/ CD Action 6 A / cdactioncoverdisc / lsl7 / install.bat < prev    next >
DOS Batch File  |  1996-07-08  |  1KB  |  65 lines

  1. @echo off
  2. cls
  3. mode co80
  4.  
  5. cd install
  6.  
  7. @echo The Sierra Install Program attempts to detect the
  8. @echo hardware attached to your machine.  On some systems
  9. @echo this may lock-up your machine.
  10. @echo.
  11. @echo If you are running the install program for the 
  12. @echo first time, you should select Y.
  13. @echo.
  14. @echo This test may lock your computer system.
  15. @echo Select N if you have experienced a lock-up 
  16. @echo previously when performing this test.  
  17. @echo.
  18. .\what C "Do you want to perform hardware tests? (Y/N) " yn
  19. cls
  20.  
  21. if not %what%.==Y. goto skipAuto
  22.  
  23. call install.exe -f
  24. goto doneInstall
  25.  
  26. :skipAuto
  27. call install.exe -f -m
  28.  
  29. :doneInstall
  30.  
  31. IF NOT EXIST RESOURCE.CFG  GOTO end
  32. IF NOT EXIST INSTALL.EXE   GOTO end
  33. IF NOT EXIST CPUID.EXE     GOTO end
  34. IF NOT EXIST HDDTEC.EXE    GOTO end
  35.  
  36. cls
  37. @echo The Sierra Install Program is about to perform a 
  38. @echo graphics speed test.  This test is used to
  39. @echo determine optimal settings for Leisure Suit Larry 7.
  40. @echo.
  41. @echo If you are running the install program for the 
  42. @echo first time, you must select Y for proper gameplay
  43. @echo performance.
  44. @echo.
  45. @echo This test may lock your computer system.
  46. @echo Select N if you have experienced a lock-up 
  47. @echo previously when performing this test.  
  48. @echo.
  49. .\what C "Do you want to perform the graphics speed test? (Y/N) " yn
  50. cls
  51.  
  52. if not %what%.==Y. goto skipTests
  53.  
  54. @echo.        
  55.     cpuid
  56. @echo.        
  57.     dos4gw hddtec
  58. @echo.
  59.  
  60. :skipTests
  61.  
  62.  
  63. :end
  64.  
  65.