[这个贴子最后由hgwyc在 2004/02/19 03:01pm 第 2 次编辑]
谢谢,我也下载了.我在
http://bbs.wwwfox.net/cgi-bin/to ... c=6123&show=125上看了怎么编辑启动界面,但还是不明白,在这里的论坛没看到过diskemu的帮助文章.EasyBoot制作启动光盘我已会用了,但我还想学diskemu,不知任我行斑竹能不能写一篇diskemu的帮助文章,谢谢.这是无忧的
cd img
:start
cls
print
print --------------------------------------------------------------------------
print Bootable CD main menu http://www.wwwfox.net
print --------------------------------------------------------------------------
print
print Please choose your favorite from the menu below:
print ------------------------------------------------
print 1. WuYou BootDisk MI30 (Mix IDE)
print 2. WuYou BootDisk GI30 (Graphic IDE)
print 3. WuYou BootDisk EI30 (English IDE)
print 4. WuYou BootDisk MS30 (Mix SCSI)
print 5. WuYou BootDisk GS30 (Graphic SCSI)
print 6. WuYou BootDisk ES30 (English SCSI)
print 7. Offline NT Password & Registry Editor v011022
print 8. O&O BlueCon 2000 Pro 2.0 b337
print
print Spacebar = Mix IDE Enter = Graphic IDE Backspace = English IDE
print ------------------------------------------------------------------
print F1 = HELP R = Reboot Q = Quit to Command prompt
print Esc = Boot from Hard Disk F = Boot from Floppy Disk
print ------------------------------------------------------------------
print --------------------------------------------------------------------------
print Bootable CD main menu http://www.wwwfox.net
print --------------------------------------------------------------------------
:mainkey
; timeout is 20 seconds, default key is escape
getkey 20 esc
onkey spc goto MI30
onkey entr goto GI30
onkey del goto EI30
onkey 1 goto MI30
onkey 2 goto GI30
onkey 3 goto EI30
onkey 4 goto MS30
onkey 5 goto GS30
onkey 6 goto ES30
onkey 7 goto NTPASSWD
onkey 8 goto BLUECON
onkey f1 goto help
onkey q quit
onkey r reboot
onkey f boot 0
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
;
:GI30
print Start WuYou BootDisk GI30 (Graphic IDE)
run GI30.IMG
getkey
goto start
;
:GS30
print Start WuYou BootDisk GS30 (Graphic SCSI)
run GS30.IMG
getkey
goto start
;
:MI30
print Start WuYou BootDisk MI30 (Mix IDE)
run MI30.IMG
getkey
goto start
;
:MS30
print Start WuYou BootDisk MS30 (Mix SCSI)
run MS30.IMG
getkey
goto start
;
:EI30
print Start WuYou BootDisk EI30 (English IDE)
run EI30.IMG
getkey
goto start
;
:ES30
print Start WuYou BootDisk ES30 (English SCSI)
run ES30.IMG
getkey
goto start
;
:NTPASSWD
print Edit NT or Win 2K Administra Passwd
run bd011022.bin
getkey
goto start
;
:BLUECON
print O&O BlueCon 2000 Professional Edition 2.0.337
run BlueCon.DAT
getkey
goto start
;
; EOF