|
17版我的实机成功,c:\GRLDR=grub4dos启动项----grldr----MENU----RUN
title
clear
##iftitle only show when command in [] returns true
## set a variable named bootmg7 where /bootmg7 is found.
iftitle [find --set-root --devices=h /bootmg7 && call set bootmg7=%@root^%] 启动 Windows 7 系统 %bootmg7% \n \n \n \n 需将win7启动文件“bootmgr”改为“bootmg7”
if exist /BOOT/GRUB/SLIC && /BOOT/GRUB/SLIC /BOOT/GRUB/OEM.BIN ! find --set-root /BOOT/GRUB/SLIC && /BOOT/GRUB/SLIC /BOOT/GRUB/OEM.BIN
find --set-root /bootmg7
chainloader /bootmg7 || chainloader --force /bootmg7 || reboot
##iftitle only show when command in [] returns true
## set a variable named bootmgr where /bootmgr is found.
iftitle [find --set-root --devices=h /bootmgr && call set bootmgr=%@root^%] 启动 Windows 8 系统 %bootmgr% \n \n \n \n 如没有安装NT6.X系统则不显示此菜单
if exist /BOOT/GRUB/SLIC && /BOOT/GRUB/SLIC /BOOT/GRUB/OEM.BIN ! find --set-root /BOOT/GRUB/SLIC && /BOOT/GRUB/SLIC /BOOT/GRUB/OEM.BIN
find --set-root /bootmgr
chainloader /bootmgr || chainloader --force /bootmgr || reboot
title 使用 NTBOOT选择启动操作系统 \n \n \n \n 需 NTBOOT.ISO文件放在 /BOOT/IMGS/ 目录下
command RUN NTBOOT.ISO
title 使用 Diskgen3.8分区维护工具 \n \n \n
command RUN MAXDOS.IMG --max-ext diskgen.bat |
|