|
|
请问怎样制作5合一的启动光盘(在3合一的基础上加入NT)??
用diskemu1x.bin来制作更容易。
mkbootcd.txt的内容:
;
; MKBOOTCD command file created by Bart Lagerweij
;
;--- Section ID ---
-SWindows 2000 Pro CD
;
;--- Dummy boot catalog file ---
bootcat.bin
;
-t0
-c4
loader.bin
;
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 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 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
|
|