|
|
我想做dos和98的双启动,以下是diskemu.cmd的内容:
:start
cls
print
print --------------------------------------------------------------------------
print Msdos 6.22 + Windows 98se
print --------------------------------------------------------------------------
print
print Please choose your favorite from the menu below:
print
print 1. Msdos 6.22
print 2. Windows 98 Se
print
print F1 = HELP R = Reboot
print Esc = Boot first harddisk
print
print
print The serial numbers of the three operation systems are as follow :
print
print Windows 98 Second Edition : QY7TT-VJ7VG-7QPHY-QXHD3-B838Q
print
print --------------------------------------------------------------------------
print Bootable CD main menu print
print --------------------------------------------------------------------------
:mainkey
; timeout is 20 seconds, default key is escape
getkey 20 esc
onkey 1 goto dos622
onkey 2 goto win98
onkey r reboot
onkey f1 goto help
onkey esc boot 80
; When no key found...
goto mainkey
;
:help
cls
print HELP
print ----
print + Have ISO9660 filesystem support, you can do "dir" and "cd"
print + A "advanced" command prompt to load anything you want
print + A simple bootmenu for "less" advanced users
print + Autodetection of floppy image types (by filesize)
print + Using a bootable Diskemu 1.x CD-Rom, you can even boot images from "non-
print bootable" CD-Roms, just swap the CD, type "cd \" and you can use that CD.
print (Cool!)
print + You can create a multiboot bootable CD-Rom using (almost) any recording
print software you want
print + Supported floppy types: 160KB, 180KB, 320KB, 360KB, 1.2MB, 720KB, 820KB,
print 1.44MB, 1.68MB, 1.72MB, 2.88MB
print
print All supported command are listed below.
print
print batch boot bootinfotable cd cls dir
print echo emusegm getkey goto help keyval
print loadsegm onkey print quit readtest reboot
print run test type ver
print
print help <command> (or ?) Displays help about <command>
print
print Press any key to return to main menu
getkey
goto start
:dos622
print Starting install Msdos 6.22...
run dos622.img
getkey
goto start
;
:win98
print Starting install Windows 98 Se...
run win98.img
getkey
goto start
;
; EOF
光盘根目录下是:
diskem1x.bin
diskemu.cmd
dos622.img
win98.img
......
|
|