[讨论]同样的做法不同的结果,Why??高手请进!
我有两台机子,都是用GHost8.0做系统备份,然后用《自动还原光盘(四菜单)》提供的*.IMA文件,
在Nero里刻成光盘。其中华硕P3B-F那台机器一切正常,而在磐英865P板子的那个机器里,无论如何
也无法还原,总是提示:Not enough drive letters available
按理说把光驱设为“Z”怎么会“没有足够的磁盘符号可用”呢?
下面分别是AUTOEXEC.BAT和config.SYS
config.sys
[menu]
menuitem=Clone,Backup your system.
menuitem=RestoreHD,Restore from HD.
menuitem=RestoreCD,Restore from CD.
menuitem=operation,Mouse GHOST2K3.
menudefault=Clone,30
menucolor=7,0
[Clone]
device=himem.sys /testmem:off
[RestoreHD]
device=himem.sys /testmem:off
[RestoreCD]
device=himem.sys /testmem:off
device=oakcdrom.sys /D:mscd001
[operation]
device=himem.sys /testmem:off
[COMMON]
files=60
buffers=20
dos=high, umb
stacks=9, 256
lastdrive=z
autoexec.bat
@ECHO OFF
MOUSE.COM
set EXPAND=YES
SET DIRCMD=/O:N
cls
set temp=d:\
set tmp=d:\
path=a:\
IF "%config%"=="Clone" goto Clone
IF "%config%"=="RestoreHD" goto RestoreHD
IF "%config%"=="RestoreCD" goto RestoreCD
IF "%config%"=="operation" goto operation
:Clone
ghost2k3 -sure -clone,mode=pdump,src=1:1,dst=E:\system.gho -z9 -span -split=690
GOTO QUIT
:RestoreHD
ghost2k3 -sure -rb -clone,mode=pload,src=E:\system.gho:1,dst=1:1
GOTO QUIT
:RestoreCD
MSCDEX.EXE /D:mscd001 /L:Z
ghost2k3 -clone,mode=pload,src=Z:\system.gho:1,dst=1:1 -sure
GOTO QUIT
:operation
ghost2k3 -split=690
MOUSE.COM
GOTO QUIT
:QUIT