|
本帖最后由 hilsonma 于 2019-3-13 08:13 编辑
没想到上面的附件居然有7次下载,其实上面的附件是根据1楼贴图中的系统和PE部署来修改的,其他电脑未必适用,大家感兴趣的话我将我自己在用的grldr内置菜单分享一下,大家可根据自己的情况作修改。
菜单第一项和第五项启动windows
菜单第二项启动微PE WIM镜像
菜单第三项启动ISO版PE
菜单第四项启动DOS镜像
菜单第六项将某分区根目录的ISO子目录中的各类镜像自动生成子菜单供选择启动
SISO 是5大发表的grub环境下的镜像文件启动器,必须与grldr一起放在某分区的根目录,要启动的镜像文件集中放到某个文件夹,这个文件夹只放要选择启动的镜像文件,以便SISO启动器自动生成菜单,我的镜像文件是放在ISO这个文件夹内的。
default 0
timeout 1
title Windows
fallback 4
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 WePE
find --set-root --ignore-floppies --ignore-cd /WEPE/WEPE
chainloader /WEPE/WEPE
title 360PE.iso
find --set-root --ignore-floppies --ignore-cd /360PE.iso
map /360PE.iso (0xff) || map --mem /360PE.iso (0xff)
map --hook
chainloader (0xff)
title dos.img
find --set-root --ignore-floppies --ignore-cd /dos.img
map --mem /dos.img (fd0)
map --hook
chainloader (fd0)/io.sys
title ntldr
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 Run-ISO WIM VHD IMG
command SISO RUN=--loadfont --automenu-all /ISO/
title reboot
reboot
title halt
halt |
|