|
本帖最后由 anythingsky 于 2019-1-1 21:57 编辑
如下代码 , 本人想让他默认启动 "启动 Windows 10 PE x64 (新机型)"
需要改什么 了
timeout 15
default 2
gfxmenu /BOOT/GRUB/MESSAGE
graphicsmode -1 600:800
font /BOOT/GRUB/MENU.HEX
title [1] 启动 Windows 2003 PE (旧机型)
find --set-root /WXPE/SETUPLDR.BIN
chainloader /WXPE/SETUPLDR.BIN
title [2] 启动 Windows 10 PE x64 (新机型)
find --set-root /BOOT/10PEX64
chainloader /BOOT/10PEX64
title [3] 启动 硬盘上的操作系统
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 [4] 运行 DiskGenius 硬盘分区工具
terminal console
pause --wait=2 Loading DiskGenius tool ...
map --mem /BOOT/IMGS/DG.IMG (fd0)
map --hook
chainloader (fd0)+1
rootnoverify (fd0)
title [5] 运行 Ghost 备份恢复工具
configfile /BOOT/GRUB/GHOST.LST
title [6] 运行 MaxDos 工具箱
terminal console
pause --wait=2 Loading DOS tool ...
map --mem /BOOT/IMGS/DOS.IMG (fd0)
map --hook
chainloader (fd0)+1
rootnoverify (fd0)
title [7] 运行 其他工具
configfile /BOOT/GRUB/TOOL.LST
title [8] 关闭 计算机
halt
|
|