quote:
--------------------------------------------------------------------------------
Microsoft Windows XP Professional
Microsoft Windows
请选择要启动的启动,还剩30秒
--------------------------------------------------------------------------------
代码:--------------------------------------------------------------------------------[boot loader]
timeout=30
default=multi(0)disk(0)rdisk(0)partition(2)\WINDOWS
[operating systems]
multi(0)disk(0)rdisk(0)partition(2)\WINDOWS="Microsoft Windows XP Professional" /fastdetect
C:\=" Microsoft Windows "--------------------------------------------------------------------------------
代码:--------------------------------------------------------------------------------[boot loader]
timeout=5
default=multi(0)disk(0)rdisk(0)partition(2)\WINDOWS
[operating systems]
multi(0)disk(0)rdisk(0)partition(2)\WINDOWS="Microsoft Windows XP Professional" /fastdetect
C:\="全自动系统恢复 (Powered By Pcman)"--------------------------------------------------------------------------------
这个启动菜单中是可以使用中文的。以上配置完成后,菜单就变成了这个样子:
quote:
--------------------------------------------------------------------------------
Microsoft Windows XP Professional
全自动系统恢复 (Powered By Pcman)
请选择要启动的启动,还剩5秒
--------------------------------------------------------------------------------
Autoexec.bat文件内容
代码:--------------------------------------------------------------------------------@echo off
PATH=C:\;C:\DOS;C:\GHOST
C:\DOS\SMARTDRV.EXE
c:\dos\ghost -clone,mode=pload,src=c:\abc.gho:1,dst=1:2 -sure -fx –rb--------------------------------------------------------------------------------
config中的himem是加载扩展内存必备的,smartdrv是高速缓存的驱动,dos下边如果不挂这个就装系统,慢死。最后一行是ghost的参数行,就是讲当前文件恢复到D盘的参数,后边的-rb表示完成后自动重新启动系统。具体的参数说明可以参见ghost的帮助文件。
如此就实现了自动恢复,系统启动后只要简单选择 “进入xp / 系统恢复” “自动Ghost / 返回DOS / 重新启动”就可以了,绝对的一键恢复,ghost完毕之后自动重新启动,不用第二个键……
写在最后
DOS的技巧还有很多,比如我给大家show一下我得恢复菜单
quote:
--------------------------------------------------------------------------------
Rebuild Your System (Powered By Pcman)
Return to DOS Command Line
Restart Your Computer
请选择您要启动的系统,还剩20秒
--------------------------------------------------------------------------------
这个启动菜单和Win98启动盘的菜单很相似的,也是通过autobat和config来实现的,我这里把代码贴出来,大家可以自行研究扩展。
Config.sys文件内容
代码:--------------------------------------------------------------------------------[menu]
menuitem=ghost,Rebuild Your System (Powered By Pcman)
menuitem=dos,Return to DOS Command Line
menuitem=restart,Restart Your Computer
menudefault=restart,20
menucolor=7,0
[ghost]
device=c:\dos\himem.sys /testmem: off
[dos]
device=c:\dos\himem.sys /testmem: off
[restart]
device=c:\dos\himem.sys /testmem: off
--------------------------------------------------------------------------------
Autoexec.bat文件内容
代码:--------------------------------------------------------------------------------@echo off
path=c:\;c:\dos;c:\ghost;
c:\dos\smartdrv.exe
c:\dos\doskey.com
if "%config%"=="ghost" goto ghost
if "%config%"=="dos" goto dos
if "%config%"=="restart" goto restart
:ghost
c:\ghost\ghost -clone,mode=pload,src=c:\ghost\20030101.gho:1,dst=1:2 -sure -fx -rb
goto quit
:dos
goto quit
:restart
c:\dos\restart.com
goto quit
:quit
--------------------------------------------------------------------------------