|
请教各位大虾,如何用diskem1x.bin制作 Winme 和Win98多重启动
[这个贴子最后由WANGZAI在 2002/01/11 12:00pm 编辑]
下面引用由lezhe在 2002/01/11 10:36am 发表的内容:
请教各位大虾,如何用diskem1x.bin制作 Winme 和Win98多重启动
谢谢
oicq 171909
email ytj1518@sina.com 比如说可以这样做,供参考:
1、目录文件列表(你可以增加另外一些文件或文件夹):
2001-11-20 00:43 <DIR> BOOT 无忧启动光盘工具,ver025
2001-11-20 00:43 <DIR> UCDOS UCDOS
2001-12-05 00:29 <DIR> WIN98SE WINDOWS 98 SE文件安装目录
2001-12-05 00:47 <DIR> WINME WINDOWS ME文件安装目录
2001-11-19 02:08 2,048 BOOTCAT.BIN
2000-01-10 12:00 304,624 BOOTFONT.BIN
2001-07-11 15:59 12,288 DISKEM1X.BIN
2001-06-06 17:28 4,096 DISKEMU.BIN
2002-01-06 22:56 3,912 DISKEMU.CMD
2002-01-06 22:42 1,474,560 025.IMG 无忧启动光盘启动压缩档
2002-01-02 00:34 1,474,560 WIN98SE.IMG WINDOWS 98 SE启动软盘压缩档
2002-01-02 21:13 1,474,560 WINME.IMG WINDOWS ME启动软盘压缩档
2、DISKEMU.CMD文件内容如下:
;
; Created by WANGZAI
;
:start
cls
print
print -------------------------------------------------------------------------
print Bootable CD Main Menu [http://wangzai.go.163.com]
print -------------------------------------------------------------------------
print Please choose your favorite from the menu below :
print
print 1) Start 51 BootDisk (version025)
print 2) Windows 98 Second Edition OEM
print 3) Windows Millennium Edition
print
print -------------------------------------------------------------------------
print The Serial numbers of the three operation systems are as follow :
print
print Windows 98 Second Edition : PTX6T-WTQ9G-C7B2Y-TC3K8-YT4GB
print
print Windows Millennium Edition : HJPFQ-KXW9C-D7BRJ-JCGB7-Q2DRJ
print
print -------------------------------------------------------------------------
print F1 = Help Q = Quit To Command Prompt
print R = ReBoot ESC = Boot From First Harddisk
print -------------------------------------------------------------------------
print Made By WANGZAI email:wangzai@eastday.com
print -------------------------------------------------------------------------
:mainkey
; timeout is 20 seconds, default key is escape
getkey 20 esc
onkey 1 goto bootdisk
onkey 2 goto win98
onkey 3 goto winme
onkey q quit
onkey f1 goto help
onkey esc boot 80
; When no key found...
goto mainkey
;
getkey
goto start
;
:help
cls
print HELP
print -------------------------------------------------------------------------
print Available commands are listed below:
print batch - Syntax: batch <filename> [<label>]
print boot - Syntax: boot <#drvnum>
print cd - Syntax: cd <path>
print echo - Syntax: echo [on/off]
print emusegm - Syntax: emusegm <xxxx>
print getkey - Syntax: getkey [<timeout> <key>]
print goto - Syntax: goto <label>
print help - Syntax: help <command> (or ?)
print loadsegm - Syntax: loadsegm <xxxx>
print onkey - Syntax: onkey <key> <command>
print print - Syntax: print <message>
print run - Syntax: run <file>
print type - Syntax: type (or cat) <file>
print cls - Syntax: cls (or clear) | dir - Syntax: dir (or ls)
print keyval - Syntax: keyval | quit - Syntax: quit
print readtest - Syntax: readtest | reboot - Syntax: reboot
print test - Syntax: test | ver - Syntax: ver
print -------------------------------------------------------------------------
print Press any key to return to main menu
getkey
goto start
;
:bootdisk
print Starting 51 BootDisk (version 025)
run 025.img
getkey
goto start
;
:win98
print Starting Install Windows 98 Second Edition OEM
run win98se.img
getkey
goto start
;
:winme
print Starting Install Windows Millennium Edition
run winme.img
getkey
goto start
;
; EOF
:em16: |
|