|
本帖最后由 ma__jjuunn 于 2024-11-24 20:59 编辑
请问楼主,uefi下的命令怎么写?可以实现吗?谢谢!
经过自己的测试,uefi下也完全可行,2013feng901012坛友在2022年就发过类似菜单了,测试完全可行
提醒一下:下面菜单方案2需要注意,ntboot文件需要和vhd文件在同一目录(或分区?未测试),否则无法启动vhd系统,
方案1菜单ntboot可以放在efi分区,可正常启动VHD系统。
感谢坛里的各位大神!用的是2011yaya2007777大神最新版的G4E
title 使用外部命令 NTBOOT 启动 WIM/VHD (方案2)
find /vhd/atlas.vhd | set bd=
/vhd/ntboot %bd%/vhd/atlas.vhd winload=/Windows/System32/boot/winload.efi minint=1
boot
title 使用外部命令 NTBOOT 启动 WIM/VHD (方案1)
find /efi/grub/ext/ntboot | set bd=
find --set-root /vhd/atlas.vhd
%bd%/efi/grub/ext/ntboot /vhd/atlas.vhd
boot
title atlas VHD OS秒还原并重启
echo ………………………………please enter y to recover VHD………………………………
password=y
find --set-root /vhd/atlas1.vhd
dd if=()/vhd/atlas1.vhd of=()/vhd/atlas.vhd
echo ………………………………please enter y to reboot…………………
password=y
find /efi/grub/ext/ntboot | set bd=
find --set-root /vhd/atlas.vhd
%bd%/efi/grub/ext/ntboot /vhd/atlas.vhd
boot
|
|