| 本帖最后由 chen463 于 2025-10-30 22:37 编辑 
 
 使用最新版本的ntboot,加高分辨率参数,直接测试。不要用run。
 例如:/efi/grub/ext/ntboot  /path/pe.wim hires=1
 /efi/grub/ext/ntboot  /path/pe.wim gfxmode=1920×1080
 ……………….. 我现在使用0226版本不通用,重新下载1011版本提取BOOTX64.EFI兼加新版ntboot测试几次,发现菜单不通执行,没效果。 琢磨了一下,修正菜单为下:执行成功并分辨率高1920×1080,没hires=1分辨率也是低,把她加入到后面-终于成功。 
 title 使用外部命令 NTBOOT 启动 WIM/VHD (方案1) find /efi/grub/ext/ntboot | set bd= find --set-root /path/pe.wim %bd%/efi/grub/ext/ntboot  /path/pe.wim gfxmode=1920×1080 hires=1 Boot 
 
 复制代码title 使用外部命令 NTBOOT 启动 WIM/VHD (方案1)
find /efi/grub/ext/ntboot | set bd=
find --set-root /path/pe.wim
%bd%/efi/grub/ext/ntboot  /path/pe.wim gfxmode=1920×1080 hires=1
Boot
 
 |