home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- :start
-
- cls
- echo PCW INTERACTIVE - QUICK DOS MENU
- echo"
- echo"
- echo This Dos menu system is here for readers who don't have (or don't use) Windows.
- echo It is also needed for some games that refuse to run correctly from within
- echo Windows.
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo"
- echo Use the cursor keys and Return to select and run an option, or press Escape to
- echo return to Dos. Please don't try to run this batch file from Windows as it
- echo defeats the whole object and won't work properly anyway.
-
- :menu1
-
- \system\getopt "Select an option:" Hell "Inside Information" Gallery "Print Partner" [Exit]
-
- if errorlevel=5 goto exit
- if errorlevel=4 goto pp
- if errorlevel=3 goto gallery
- if errorlevel=2 goto inside
- if errorlevel=1 goto hell
-
- goto exit
-
- :pp
-
- cls
- cd \share\utils\prntptnr
- pp
- cd \
- goto start
-
- :gallery
-
- cls
- cd \demos\3dstudio
- \system\picem *.gif
- cd \gallery\gif
- \system\picem *.gif
- cd \
- goto start
-
- :inside
-
- cls
- cd \demos\ins_inf
- inside
- cd \
- goto start
-
- :hell
-
- cls
- cd \demos\hell
- command /c hell.bat
- cd \
- goto start
-
- :exit
-
- cls
- echo Goodbye from PCWI...
- echo"
-
- :exit2
-