|
|
这是他的目录结构,diskemu的内容如下:
;
; diskemu.cmd sample file v1.0
; Created by bENNY lEE
;
:start
cls
print
print ------------------------------------------------------------------------------
print Bootable CD main menu mAKE fOR bENNY lEE
print ------------------------------------------------------------------------------
print F1=Help / F10=deload /F12=Boot A /Esc=Boot HD
print
print 1) Setup Microsoft Windows XP Professional
print 2) Setup Microsoft Windows 98 se
print 3) Start Bootcd 025 (SCSI)
print
print q) Quit to command prompt
print r) Reboot
print ------------------------------------------------------------------------------
print Hit the key of choice:
:mainkey
; timeout is 20 seconds, default key is escape
getkey 20 esc
onkey 1 goto WINXPPRO
onkey 2 goto WIN98SE
onkey 3 goto 025SCSI
onkey q quit
onkey r reboot
onkey 0x3b00 goto help
onkey 0x4400 run loader.bin
onkey esc boot 80
onkey 0x8600 boot 0
; When no key found...
goto mainkey
;
:help
cls
print HELP
print ----
print
print This Cd-Rom Is mAKE fOR bENNY lEE
print
print If you Have Any Peradventure,Please Send E-mail for mE!
print
print E-mail: freedl@21cn.com
print
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
:WINXPPRO
print Starting Setup Microsoft Windows XP Professional
cd img
run WXPPSECT.DAT
getkey
goto start
;
:WIN98SE
print Starting Setup Microsoft Windows 98 SE
cd img
run PWIN98.IMG
getkey
goto start
;
:025SCSI
print Start Bootcd 025
cd img
run SCSI98.IMG
getkey
goto start
; |
|