|
利用模拟BIOS制作WIN98SE和WIN2000 PRO双启动。。。
我那个样本是0.8版的,不是用cdimage做的,
要用cdimage做要类似这样:
cdimage -lMULTBOOT -t08/22/00,00:00:00 -h -o -m -n -bloader.bin disk1 MULTBOOT.ISO
disk1目录下面的Diskemu.cmd是这样:
;
:start
cls
print
print --------------------------------------------------------------------------
print Bootable CD main menu mAKE fORM pURPLEfox
print --------------------------------------------------------------------------
print
print Windows 2000 Service Pack 2 Multi IN 1 Installation. [TraditionalChinese]
print
print Please choose your favorite from the menu below:
print
print 1) Windows 2000 Professional
print 2) Windows 2000 Server
print 3) Windows 2000 Advanced Server
print 4) Windows NT 4.0 Server
print 5) Windows NT 4.0 Workstation
print 6) Windows 98 SE
print 7) Windows 2000 Boot In Command Mode
print q) Quit to command prompt
print r) Reboot
print Esc) Boot first harddisk
print
print
print --------------------------------------------------------------------------
print Multi In One Bootable CD E-MAIL: pfox@21cn.com
print --------------------------------------------------------------------------
print
print Hit the key of choice:
:mainkey
; timeout is 20 seconds, default key is escape
getkey 20 esc
onkey 1 goto 2kpr
onkey 2 goto 2ksv
onkey 3 goto 2kad
onkey 4 goto nt4s
onkey 5 goto nt4w
onkey 6 goto 98se
onkey 7 goto w2k
onkey q quit
onkey r reboot
onkey 0x4400 run deload.bin
onkey esc boot 80
; When no key found...
goto mainkey
;
getkey
goto start
;
:2kpr
print Starting Install Windows 2000 Professional SP2
run 2KPR.DAT
getkey
goto start
;
:2ksv
print Starting Install Windows 2000 Server SP2
run 2KSV.DAT
getkey
goto start
;
:2kad
print Starting Install Windows 2000 Adv_Server SP2
run 2KAD.DAT
getkey
goto start
;
:nt4s
print Starting Install Windows NT 4.0 Server
run NT4S.DAT
;
:nt4w
print Starting Install Windows NT 4.0 Workstation
run NT4W.DAT
;
:w2k
print Starting Windows 2000 Boot In Command mode
run W2KSECT.DAT
getkey
goto start
;
:98se
print Starting Microsoft Windows 98 SE
run WIN98SE.IMG
getkey
goto start
; EOF
这是我的2k、nt、98六合一的例子,你可以作参考,再
进行修改。
|
|