Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
DOS menus
Name: chris post Date: September 10, 2003 at 18:31:01 Pacific OS: DOS 6.22 CPU/Ram: AMD Duron 1.2
Comment:
Could someone please help with info on how to create a dos menu?
Name: JackG Date: September 10, 2003 at 23:32:51 Pacific
Reply:
If you are talking about a Batch file DOS menu, have someone with a Windows ME OS make you a Startup diskette and look at the Config.sys and Autoexec.bat files on the diskette for a good working example of how to construct one.
0
Response Number 2
Name: Ryan Date: September 10, 2003 at 23:57:23 Pacific
Reply:
Download DOS 7.1, I beileve it has a built in menu creator kit. (It's all GUI based too!)
0
Response Number 3
Name: SkipCox Date: September 11, 2003 at 01:06:34 Pacific
Reply:
Everything you wanted to know and were afraid to ask:
http://www.batch.hpg.ig.com.br/index.htm
Skip
0
Response Number 4
Name: Jag Date: September 22, 2003 at 17:36:59 Pacific
Reply:
Hello,
you can create a DOS menu with the MS-DOS program CHOICE.COM! For more details run from MS-DOS the HELP.COM and look for CHOICE and IF [ERRORLEVEL]!
@echo off cls echo Program Menu echo ====================== echo. echo A - Microsoft Editor echo B - F-Prot for DOS echo C - Norton Commander echo. choice /c:abc Which program do you want to start ? if errorlevel 3 goto NC if errorlevel 2 goto fprot if errorlevel 1 goto edit goto end
Summary: As stated in the subject, I have a question about configuring a Windows 98 Boot Disk's Menus. I have edited just about everything, and am successful in making a bootable dvd that will start Ghost and...
Summary: Hi, I am building and old dos gaming system and wanted to know some information on creating menus that would automatically be loaded at startup. I remember the first PC my family bought for us booted...