home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM Tue 12-13-1994 09:14:14 new version
- :start
- REM Use the %1 to add a -noburn when wanted
- mnu menu "t:Main Menu" "Host" "Remote" "Setup" "Manuals" "Quit" %1
- REM if errorlevel == 6 goto :end
- if errorlevel == 5 goto :end
- if errorlevel == 4 goto :help
- if errorlevel == 3 goto :setup
- if errorlevel == 2 goto :remote
- if errorlevel == 1 goto :host
- goto :end
-
- :host
- mnuhost
- rem pause
- goto :start
-
- :remote
- mremote
- rem pause
- goto :start
-
- :setup
- msetup
- goto :start
-
- :help
- mnu -readme *.txt
- rem pause
- goto :start
-
- :end
- cls
-