Experts, how do I make a Ghost system recovery disk?
The functions it should have are: 1. support a Chinese menu for selection
2. the menu items are: (1) automatically back up the system (2) automatically restore the system (3) boot from hard disk
3. with a graphical interface
I've done a small part of it myself, specifically as follows:
Contents of config.sys:
menuitem=RES,Backup part1 to part2.
menuitem=REC,Restore partition 1.
device=himem.sys /testmem
ff
device=emm386.exe ram
dos=high,umb
files=15
buffers=15
stacks=9,256
lastdrive=z
Contents of Autoexec.bat:
@echo off
goto %config%
:RES
@echo off
path=a:
lh a:\smartdrv.exe 8192
ghost.exe -clone, mode=pdump, src=1:1, dst=d:\back\pwin98.gho -z9 -sur
goto end
:REC
@echo off
path=a:
lh a:\smartdrv.exe 8192
ghost.exe -clone, mode=pload, src=d:\back\pwin98.gho:1,dst=1:1 -sure -rb
goto end
:END
Is what I've written already correct? What should I do next? Please don't hesitate to give me your advice, experts! I'll bow to you all here first!! ^_^
The functions it should have are: 1. support a Chinese menu for selection
2. the menu items are: (1) automatically back up the system (2) automatically restore the system (3) boot from hard disk
3. with a graphical interface
I've done a small part of it myself, specifically as follows:
Contents of config.sys:
menuitem=RES,Backup part1 to part2.
menuitem=REC,Restore partition 1.
device=himem.sys /testmem
ffdevice=emm386.exe ram
dos=high,umb
files=15
buffers=15
stacks=9,256
lastdrive=z
Contents of Autoexec.bat:
@echo off
goto %config%
:RES
@echo off
path=a:
lh a:\smartdrv.exe 8192
ghost.exe -clone, mode=pdump, src=1:1, dst=d:\back\pwin98.gho -z9 -sur
goto end
:REC
@echo off
path=a:
lh a:\smartdrv.exe 8192
ghost.exe -clone, mode=pload, src=d:\back\pwin98.gho:1,dst=1:1 -sure -rb
goto end
:END
Is what I've written already correct? What should I do next? Please don't hesitate to give me your advice, experts! I'll bow to you all here first!! ^_^


