|
我想结合win98启动盘,用ghost8.0自动还原光盘上的ghost文件,但不会自定义加载ghost,高手指教!如何制作这个镜像文件呀?如何写COMMAND、IO、AUTOEXEC等文件?
------------------------------------------------------------------------------
print F1=Help
print
print 1) System Restore From Xp Ghost image
print 2) Windows 98se Boot Disk
print 3) Symantec Ghost 8.0(2K &Xp)
print 4) Symantec Ghost 7.5(For 98)
print 5) PowerQuest(R) PartitionMagic 8.05 For Dos
print 6) Seagate Technology Disk Manager Version 9.56(For all)
print
print c) Boot from hard disk
print q) Quit to command prompt
print r) Reboot
print
print Hit the key of choice(Timout=30sec, Default=0)
print ------------------------------------------------------------------------------
:mainkey
; timeout is 30 seconds, default key is key 0
getkey 30 0
onkey 1 goto num1
onkey 2 goto num2
onkey 3 goto num3
onkey 4 goto num4
onkey 5 goto num5
onkey 6 goto num6
print
onkey c boot 80
onkey q quit
onkey r reboot
onkey f1 goto help
onkey esc reboot
; When no key found ...
goto start
print
; *** HELP ***
:help
cls
print HELP
print ----
print
print Here you can type help
print
print Press any key to return to main menu
getkey
goto start
; ***Start Restore System From Xp Ghost image***
:num1
print Proceed with Partition clone-destination drive will be overwritten
cd bootimg
run xp.img
getkey
goto start
; *** Boot Win98SE DOS Image ***
:num2
print Boot Windows 98 SE dos prompt
cd bootimg
run win98se.img
getkey
goto start
; *** Boot Symantec Ghost 8.0(2K &Xp) ***
:num3
print Boot Symantec Ghost 8.0(2K &Xp)
cd bootimg
run ghost80.img ??????????????????????
getkey
goto start
; *** Boot Symantec Ghost 7.5(For 98) ***
:num4
print Boot Symantec Ghost 7.5(For 98)
cd bootimg
run ghost75.img ????????????????????
getkey
goto start
; *** Starting PowerQuest(R) PartitionMagic 8.05 For Dos ***
:num5
print PartitionMagic 8.02 For Dos
cd bootimg
run pm.img
getkey
goto start
; *** Seagate Technology Disk Manager Version 9.56(For all) ***
:num6
print Disk Manager Version 9.56
cd bootimg
cd dm
run DDLOADER
getkey
goto start
;
; EOf |
|