|
本帖最后由 lsc1117 于 2022-1-4 20:29 编辑
RT,我在查看很多引导本地系统的命令之后筛选出如下几种,想问问各位哪种对于常用机型兼容性最好。因为本人没有太多机器可以用来测试,所以特来发帖讨论。
- 第一种
- title 启动Windows NT/2000/XP/2003
- find --set-root --ignore-floppies --ignore-cd /ntldr
- map () (hd0)
- map (hd0) ()
- map --rehook
- find --set-root --ignore-floppies --ignore-cd /ntldr
- chainloader /ntldr
- title 启动Windows Vista/Windows 7
- find --set-root --ignore-floppies --ignore-cd /bootmgr
- map () (hd0)
- map (hd0) ()
- map --rehook
- find --set-root --ignore-floppies --ignore-cd /bootmgr
- chainloader /bootmgr
复制代码- 第二种
- title 从 硬盘启动 计算机
- find --set-root --ignore-floppies --ignore-cd /ntldr || find --set-root --ignore-floppies --ignore-cd /bootmgr
- map () (hd0)
- map (hd0) ()
- map --rehook
- find --set-root --ignore-floppies --ignore-cd /ntldr || find --set-root --ignore-floppies --ignore-cd /bootmgr
- chainloader /ntldr || chainloader /bootmgr
复制代码- 第三种
- title 从本地引导
- find --set-root --ignore-floppies --ignore-cd /bootmgr || find --set-root --ignore-floppies --ignore-cd /ntldr
- map (hd1) (hd0)
- map (hd0) (hd1)
- map --hook
- rootnoverify (hd0,0)
- makeactive
- chainloader +1
- boot
复制代码 |
|