home *** CD-ROM | disk | FTP | other *** search
/ Walkthroughs & Flybys / WAITE_GROUP.bin / programs / topbatch.txt < prev    next >
Text File  |  1993-05-16  |  691b  |  22 lines

  1. @echo off
  2. cls
  3. SET THIS_VARIABLE_IS=EXACTLY
  4. IF NOT '%THIS_VARIABLE_IS%'=='EXACTLY' GOTO ERROR
  5. goto env_ok
  6. :ERROR
  7. echo This computer does not have sufficient DOS environment space free for
  8. echo the Walkthroughs & Flybys CD menu system to operate. Please allocate
  9. echo at least 25 additional bytes of environment space. The easiest way to do 
  10. echo this is by adding the following line to your CONFIG.SYS file and then
  11. echo rebooting.
  12. echo:
  13. echo    SHELL = C:\COMMAND.COM /E:### /p
  14. echo:
  15. echo For DOS 3.1 replace ### with the number of 16-byte blocks you require.
  16. echo For 3.2 and up, replace ### with the actual number of bytes.
  17. goto end
  18. :env_ok
  19. SET THIS_VARIABLE_IS=
  20.  
  21.  
  22.