|
本帖最后由 saiz 于 2023-8-29 20:20 编辑
請問下.最近在LENOVO m70s,asus M900/M700
開啟secure boot下 可進入開機選單 但無法進入PE
我有使用preloader.efi 以前在很多台使用是OK的
在這幾台都不能進PE 會找不到
但如果是開機槽下的ACRONIS之類可以開進去
能透過改寫menu.lst解決或是沒法子呢?
PS.已更新為 grub4dos-for_UEFI-2023-08-18
- #Grub4EFI
- find --set-root /EFI/grub/ntloader | set bd=
- find /SelfPE.ico | set isodir=
- timeout 10
- default 0
- #圖形介面設定
- graphicsmode -1 800
- setmenu --string=65=0=0xff9933="date&time"
- setmenu --auto-num-on --lang=zh --font-spacing=1:10
- color normal=0xff9933 highlight=0xff3300 helptext=0xff00ff heading=0x66ff00 border=0x006699
- setmenu --box x=25 w=50 y=3 h=9 l=2
- setmenu --help=25=60=13
- #支援中文
- font /EFI/GRUB/unifont.hex.gz
- title Win10x64 PE開機 \n啟動 Windows10x64 PE,限RAM 4GB以上使用
- !BAT
- echo 請選擇以何種方式啟動 Win10PE
- echo
- echo 1:方案1 (預設值)
- echo 2:方案2
- echo
- echo 稍候畫面跳轉為全黑畫面實屬正常,
- echo 請稍候3-5分鐘應可進入Windows開機LOGO
- pause --test-key --wait=15
- echo %@retval% | set PEboot=
- clear
- if %PEboot%==50 {
- find --set-root /SelfPE.ico
- uuid ()
- find --set-root /efi/grub/ntloader
- chainloader /efi/grub/ntloader initrd=/efi/grub/initrd.lz1 uuid=%?% file=/iso/10pe.wim
- }
- else {
- uuid %isodir%
- chainloader /efi/grub/ntloader initrd=/efi/grub/initrd.lz1 uuid=%?% file=/iso/10pe.wim
- boot
- }
- title Memtest86+ \n記憶體測試工具
- map --mem %isodir%/ISO/mt86plus.iso (0xff)
- chainloader (0xff)
- title Memtest86 Free \n記憶體測試工具
- chainloader %bd%/EFI/BOOT/MemtestX64.efi
- title Lenovo UEFI Diagnostics\n LENOVO 專用硬體檢測工具
- chainloader %bd%/EFI/BOOT/LenovoDiagX64.efi
- title Lenovo Diagnostics Linux \n LENOVO 專用硬體檢測工具
- find --set-root /SelfPE.ico
- kernel %isodir%/live/vmlinuz boot=live union=overlay systemd.mask=networking.service blacklist=radeon,nouveau modprobe.blacklist=radeon,nouveau nodmraid i915.preliminary_hw_support=1 amdgpu.exp_hw_support=1 psmouse.elantech_smbus=0 snd_hda_intel.power_save_controller=N
- initrd %isodir%/live/initrd.img
- title Kaspersky Rescue Disk \n卡巴斯基掃毒工具
- find --set-root /SelfPE.ico
- kernel %isodir%/live/krd/k-x86_64 net.ifnames=0 lang=en dostartx subdir=/live/krd
- initrd %isodir%/live/krd/initrd.xz
- title [子選單]磁碟備份還原/分割工具
- configfile %bd%/EFI/grub/DiskTools.lst
- boot
- title [子選單]Windows密碼修改/繞過工具\n可修改或繞過Windows密碼驗證之工具
- configfile %bd%/EFI/grub/NTPWd.lst
- boot
- title 切換到Grub2開機選單\n改以Grub2開機
- chainloader %bd%/EFI/boot/Grub2EFI.EFI
- boot
复制代码
|
|