HackBGRT icon indicating copy to clipboard operation
HackBGRT copied to clipboard

Any plans for enabling a silent installation?

Open aryaxo opened this issue 6 years ago • 1 comments

Would love to be able to silently install this silently, as I do not know enough about editing the EFI tables myself once the correct files are in place on the EFI partition.

Can't thank you enough for your work already!

aryaxo avatar Dec 30 '19 22:12 aryaxo

I make silent install batch file for Windows system . It works fine in Windows 10 20H2 .

You need to edit config.txt properly in advance .

Execute following Command in Command Prompt(cmd.exe) as Administrator .


rem Drive name that does not currently exist in the system . rem Generally "Y:" drives usually does not exist . set EFI_DRIVE_LETTER=Y set HACK_BGRT_PATH=%EFI_DRIVE_LETTER%:\EFI\HackBGRT

mountvol %EFI_DRIVE_LETTER%: /S

dir %EFI_DRIVE_LETTER%:

mkdir %HACK_BGRT_PATH% cd %HACK_BGRT_PATH% dir %EFI_DRIVE_LETTER%:

rem You have to need Edit config.txt , Before copying it . rem ex. boot=\EFI\Microsoft\Boot\bootmgfw.efi copy config.txt %EFI_DRIVE_LETTER%:

rem You change to your favorite image file . copy splash.bmp %EFI_DRIVE_LETTER%:

rem for 64bit System HackBGRT bootx64.efi copy bootx64.efi %EFI_DRIVE_LETTER%:

dir %EFI_DRIVE_LETTER%:

mountvol %EFI_DRIVE_LETTER%: /D

rem Change boot loader to \EFI\HackBGRT\bootx64.efi bcdedit /set {bootmgr} path \EFI\HackBGRT\bootx64.efi

rem Enjoy HackBGRT !!


FREEWING-JP avatar Nov 14 '20 10:11 FREEWING-JP

Implemented in version 2.0.0.

Metabolix avatar Sep 10 '23 14:09 Metabolix