This is a great little utility for your autoexec.bat or any other batch
file!  It uses DOS ERRORLEVELS to allow you to put a yes/no question in
any batch file as follows:
     ERRORLEVEL 2......YES response
     ERRORLEVEL 1......no response given in <x> seconds, execute YES response
     ERRORLEVEL 0......execute NO response

Usage:
TASK <x> <Question>
<x> is how long to wait for an answer.

Here's a sample batch file to show you how it works!

@echo off
rem decide whether to run WP or AUTOMENU
task 5 Load WP? (Y/N)
if errorlevel 2 goto wp
if errorlevel 1 goto wp
if errorlevel 0 goto automenu
:WP
echo loading WP 5.0......
cd \wp5
wp5
:AUTOMENU
echo Loading menu program....
menu

That's all there is to it!   In this example, the batch file will ask
Load WP? (Y/N) and wait 5 seconds for an answer.  A yes or no answer at all
will load WP.  A no answer will load the menu program.
