本帖最后由 chen463 于 2023-7-25 12:05 编辑
用这个菜单,失败(能出菜单,选中ISO后,能读取,出win logo 但始终转圈)!
find /efi/grub/ext/RUN | set bd= ;; echo bd=%bd%
set highest=yes
command %bd%/efi/grub/ext/RUN --automenu /winpes/
boot
换用这个菜单,却成功了!
find --set-root /winpes | set ss= ;; echo ss=%ss%
command --set-path=%@boot%/efi/grub/ext
command run --mem --top --set-showsize=0 --automenu show.iso.wim %ss%/winpes/
boot
1第一个菜单读取ISO要加—mem命令,否则会失败。 2第二个菜单读取进入RUN后,出不来了,被定位在find --set-root /winpes 里头,跟启动ROOT已经脱离。 {RUN命令不能使用find --set-root …命令,会被定位}。 3 RUN命令使用,您试试看下面两个菜单
- title run-2011yaya2007777-pe-2\n ME-root %@root%
- debug 3
- find /EFI/grub/ext/RUN | set bd= ;; echo bd=%bd%
- pause find
- set highest=yes
- command %bd%/EFI/grub/ext/RUN --mem --top --set-showsize=0 --automenu-all /winpes/
- boot
- title RUN mem automenu-all 运行自动菜单搜索目录下映像/boot/imgs/wim.iso.img文件\n RUN目录下映像/boot/imgs/wim.iso.img文件root %@root%
- debug 3
- find --ignore-floppies --ignore-cd /EFI/grub/ext/RUN | set rn= ;; echo rn=%rn%
- pause find
- command --set-path=%rn%/efi/grub/ext
- command run --mem --top --set-showsize=0 --automenu-all show.wim.iso /winpes/
- boot
复制代码
|