| Next revision | Previous revision |
| bios:notes:zedk [2026/02/28 02:42] – created Sean Rhone | bios:notes:zedk [2026/02/28 02:55] (current) – Sean Rhone |
|---|
| * This installs to internal HDD and adds to UEFI boot menu | * This installs to internal HDD and adds to UEFI boot menu |
| * :!: zedk should be added before the OS when re-creating boot entries from scratch with ''efibootmgr'' (like [[linux:distros:fedora_workstation_gnome#remove_shim|remove shim]]) ((last-added entry is set to primary boot)) | * :!: zedk should be added before the OS when re-creating boot entries from scratch with ''efibootmgr'' (like [[linux:distros:fedora_workstation_gnome#remove_shim|remove shim]]) ((last-added entry is set to primary boot)) |
| | * :?: 2026/02/28: Doesn't seem to expose unlocked menus on Latitude 5591 like [[bios;notes;umaf|UMAF]] |
| |
| ====== zedk ====== | ====== zedk ====== |
| DEL /Q "%UserProfile%\Downloads\zedk.zip" & "%SystemRoot%\System32\curl.exe" --output "%UserProfile%\Downloads\zedk.zip" --location "https://github.com/kohlschuetter/zedk/releases/download/zedk-20260224/zedk-20260224.zip" && RMDIR /S /Q "%UserProfile%\Downloads\zedk" & MKDIR "%UserProfile%\Downloads\zedk" && "%SystemRoot%\System32\tar.exe" xf "%UserProfile%\Downloads\zedk.zip" -C "%UserProfile%\Downloads\zedk" | DEL /Q "%UserProfile%\Downloads\zedk.zip" & "%SystemRoot%\System32\curl.exe" --output "%UserProfile%\Downloads\zedk.zip" --location "https://github.com/kohlschuetter/zedk/releases/download/zedk-20260224/zedk-20260224.zip" && RMDIR /S /Q "%UserProfile%\Downloads\zedk" & MKDIR "%UserProfile%\Downloads\zedk" && "%SystemRoot%\System32\tar.exe" xf "%UserProfile%\Downloads\zedk.zip" -C "%UserProfile%\Downloads\zedk" |
| |
| <code> | * Uncomment last 3 for auto-start |
| MOVE /Y "%UserProfile%\Downloads\UMAF_BETA\EFI\Boot\BOOTX64.efi" "%UserProfile%\Downloads\UMAF_BETA\EFI\Boot\umaf.efi" | |
| |
| "%SystemRoot%\System32\mountvol.exe" Y:\ /S | "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Downloads\zedk\startup.nsh" |
| |
| MOVE /Y "%UserProfile%\Downloads\UMAF_BETA\*.efi" "Y:\" | MOVE /Y "%UserProfile%\Downloads\zedk\EFI\Boot\bootx64.efi" "%UserProfile%\Downloads\zedk\EFI\Boot\zedk.efi" |
| MOVE /Y "%UserProfile%\Downloads\UMAF_BETA\SREP_Config.cfg" "Y:\" | |
| MOVE /Y "%UserProfile%\Downloads\UMAF_BETA\EFI\Boot\umaf.efi" "Y:\EFI\Boot" | |
| |
| "%SystemRoot%\System32\mountvol.exe" Y:\ /D | "%SystemRoot%\System32\mountvol.exe" Y:\ /S |
| |
| DEL /Q "%UserProfile%\Downloads\UMAF_BETA.zip" | "%SystemRoot%\System32\Robocopy.exe" "%UserProfile%\Downloads\zedk" "Y:" /MOVE /E |
| RMDIR /S /Q "%UserProfile%\Downloads\UMAF_BETA" | |
| |
| :: End</code> | "%SystemRoot%\System32\mountvol.exe" Y:\ /D & DEL /Q "%UserProfile%\Downloads\zedk.zip" |
| |