title 更换背景图 \n 更换背景图片,默认保存位置/BOOT/GRUB/BG/
if not exist /BOOT/GRUB/BG/BGAutoChange find --set-root --devices=chpu /BOOT/GRUB/BG/BGAutoChange
command BGAutoChange /BOOT/GRUB/BG/
title 启动Windows XP PE \n 用于引导散开放置于逻辑分区上的PE引导文件启动,同时加载SRS驱动
if not exist /BOOT/GRUB/RUN || find --set-root --devices=chpu /BOOT/GRUB/RUN
usb --init
command /boot/F6IMG /boot/srs
map --e820cycles=3
map --rehook
chainloader /boot/p/SETUPLDR.BIN
title 启动Windows 2003 PE \n 启动2003PE,同时加载SRS驱动
if not exist /BOOT/GRUB/RUN find --set-root --devices=chpu /BOOT/GRUB/RUN
usb --init
command /boot/F6IMG /boot/srs
map --e820cycles=3
map --rehook
chainloader /boot/xp/SETUPLDR.BIN
title 启动Windows 2003 PE iso版 \n 启动2003PE iso版,同时加载USB驱动
if not exist /BOOT/GRUB/RUN find --set-root --devices=chpu /BOOT/GRUB/RUN
command /boot/F6IMG /boot/srs
map --e820cycles=3
map --rehook
usb --init
map --mem /boot/wim/WIN03PE.ISO (0xff)
map --hook
chainloader (0xff)
title 启动Windows 7/8/10 PE \n 用于引导散开放置于逻辑分区上的PE引导文件启动,同时加载SRS驱动
if not exist /BOOT/GRUB/RUN find --set-root --devices=chpu /BOOT/GRUB/RUN
command /boot/F6IMG /boot/srs
map --e820cycles=3
map --rehook
chainloader /boot/bootmgr-pe
title 全自动菜单(支持.ISO安装Windows)
set /a a=29<<2+*0x8304
set /a b=*%a%+8
set /a c=*%b%&0x00000000
write %b% %c%
graphicsmode -1 640
splashimage /BOOT/GRUB/AUTOMENU/BG.LZMA
font /BOOT/GRUB/UNIFONT.HEX
color normal=0x00 highlight=white/light-gray helptext=0x1F heading=0x0A standard=0x0F
command /BOOT/GRUB/AUTOMENU/AUTOMENU
title 启动 IMG/IMA工具菜单 \n 自备 1.LST 文件,放在 /BOOT/GRUB/ 目录下,各种DOS工具大全
if not exist /BOOT/GRUB/RUN find --set-root --devices=chpu /BOOT/GRUB/RUN
command RUN /BOOT/GRUB/1.LST
title 启动文件浏览器 \n 文件夹优先显示,其次是文件,默认显示U盘boot目录(菜单形式)
if not exist /BOOT/GRUB/RUN find --set-root --devices=chpu /BOOT/GRUB/RUN
command RUN --automenu /boot/
title 加载USB驱动安装U盘上Win7/8/10到硬盘(老主板)\n 复制bootmgr、bcd文件进U盘中boot文件夹,解压原版ISO系统镜像中的sources文件夹及里面的全部文件一起复制到U盘根目录
usb --init
chainloader /boot/bootmgr
title 不加载USB驱动安装U盘上Win7/8/10到硬盘(新主板)\n 复制bootmgr、bcd文件进U盘中boot文件夹,解压原版ISO系统镜像中的sources文件夹及里面的全部文件一起复制到U盘根目录
chainloader /boot/bootmgr
title 安装Win7/8/10系统到硬盘(D盘已解压完整的ISO文件)\n 解压原版ISO到D盘根目录
chainloader(hd0,1) /boot/bootmgr
title 用 PLPBT.BIN 加载usb2.0驱动 \n 需自备PLPBT.BIN文件,放在 /BOOT/IMGS/ 目录下
if not exist /BOOT/GRUB/RUN find --set-root --devices=chpu /BOOT/GRUB/RUN
command RUN PLPBT.BIN
title 启动 其他grub4dos高级菜单 \n 自备 2.LST 文件,放在 /BOOT/GRUB/ 目录下,各种DOS工具大全
if not exist /BOOT/GRUB/RUN find --set-root --devices=chpu /BOOT/GRUB/RUN
command RUN /BOOT/GRUB/2.LST
efi---32菜单(boot/grub/grub-efi-32.cfg):
menuentry "启动Windows 8/10 32位 PE" --class windows --class os {
echo "正在启动 Microsoft Windows 10..."
insmod part_gpt
insmod ntfs
insmod fat
insmod search_fs_file
insmod chain
search --no-floppy --set=root -f /EFI/Microsoft/booti.ia32/bootmgfw.efi
chainloader (${root})/EFI/Microsoft/booti.ia32/bootmgfw.efi
}
menuentry "启动GURB2文件浏览器" --class windows --class os {
echo "正在启动 Microsoft Windows 10..."
insmod part_gpt
insmod ntfs
insmod fat
insmod search_fs_file
insmod chain
search --no-floppy --set=root -f /efi/boot/grubx64.efi
chainloader (${root})/efi/boot/grubx64.efi
}
menuentry "启动MEMTEST内存条测试32位版" --class windows --class os {
echo "正在启动 Microsoft Windows 10..."
insmod part_gpt
insmod ntfs
insmod fat
insmod search_fs_file
insmod chain
search --no-floppy --set=root -f /efi/boot/neicun32.EFI
chainloader (${root})/efi/boot/neicun32.EFI
}
menuentry "启动konboot绕过开机密码32位版" --class windows --class os {
echo "正在启动 Microsoft Windows 10..."
insmod part_gpt
insmod ntfs
insmod fat
insmod search_fs_file
insmod chain
search --no-floppy --set=root -f /efi/boot/konboot32.efi
chainloader (${root})/efi/boot/konboot32.efi
}
menuentry "启动EFI-shell-x32模式" --class windows --class os {
insmod part_msdos
insmod fat
chainloader /efi/boot/shellia32.efi
}