【关于BMGR程序应用于其它电脑的可能】
IBM的笔记本电脑是在BIOS启动时出现按F1键进入bios、按F11键恢复系统、按F12键进入启动菜单,这是因为IBM的BIOS中集成了对硬盘MBR的检测。换成其他BIOS,其实把这个功能安装在任何一个硬盘上,离开了IBM的BIOS,同样 可以工作,此时出现“按F11键恢复系统”的信息提示是在BIOS界面过去后,系统开始引导之前。提示信息可以自己定义,作者喜欢加上powered by pcman等。
1. Recovery the Computer System
2. Restart the Computer
相应的config.sys和autoexec.bat的文件内容如下:
config.sys
-----------------------------------------------------
[menu]
menuitem=recovery, Recovery the Computer System
menuitem=restart, Restart the Computer
menudefault=restart,20
menucolor=7,0
[recovery]
device=himem.sys /testmem: off
[restart]
device=himem.sys /testmem: off
------------------------------------------------
autoexec.bat
------------------------------------------------------
@echooff
smartdrv.exe
doskey.com
if "%config%"=="recovery" goto recovery
if "%config%"=="restart" goto restart