Tested on HP Elitebook 840 G3. You may also use this tool to change the logo to your own custom one.
Recently I acquired an used HP Elitebook 840 G3. Everything was fine with it, but it had a custom UEFI logo when starting the OS - it was branded by the company that owned this laptop before.
As it became my personal laptop I didn't want it to be branded by them and I tried to find a way to restore the original HP/Windows logo (it had the custom logo during POST and during the OS startup as well).
Surprisingly it wasn't easy to find a solution - there were some forum posts with the same issue and partial solutions, but there was no step-by-step guide. So I decided to write down my experience with removing that logo.
- HP PC Hardware Diagnostics UEFI does not create a HP_TOOLS p... - HP Support Community - 7176402
- Displaying a custom logo during bootup of HP commercial notebook systems
- Solved: Using HP's CustomLogoApp.efi - HP Support Community - 7306958
- Solved: how to install this BIOS update exe file??? Type: BIOS Versi... - HP Support Community - 8087762
- Download files listed above - they are distributed in the same way as HP drivers are
- "Install" both of them on - instalator will just unpack the required files into "C:/SWSetup"
Note: I haven't tried to download and unpack the required files on Linux - maybe there is a way as these exe files are simple extractors, but I don't know, sorry. - Prepare an USB flash drive - empty it, format it with FAT32 and copy both of the required files (
Shell_Full.efi
andCustomLogoApp.efi
) into the root of the drive - Connect the USB drive to the HP laptop
- Turn the laptop on
- Disable Secure Boot (if enabled) - BIOS -> Advanced -> Secure Boot Configuration -> Configure Legacy Support and Secure Boot -> Legacy Support Disable and Secure Boot Disable
- Enter Boot menu (F9 key or ESC key and select Boot menu)
- Select Boot from file
- Locate your USB drive
Note: In my case the internal SSD is completely empty (with no partition) so there is only one position, in your case there might be more and you need to find the one that will list the content of the USB flash drive. - Select
Shell_Full.efi
Note: I had a problem with printing a text from the shell, it looked bad, but I could somehow read what was written. - In the shell move to the USB drive (it will list the connected devices) - it will probably be
fs0:
orfs1:
.
Note: Usels
to list the content of the current directory,cd
to enter a directory (if needed) andcls
to "clear" the screen and move your prompt to the first line. - Enter
CustomLogoApp.efi -e
to remove the custom logo (orCustomLogoApp.efi logofilename.jpg
to set a custom logo) - Enter
exit
or turn the laptop off - During the next boot you should have a generic HP logo
So the first thing I tried was obviously to reset the BIOS settings (using both "Apply factory defaults" and "Apply custom defaults"), but it did nothing to the logo. I also tried updating the BIOS version (using the prepared USD drive as well as using the online BIOS update from the BIOS itself).
Then I started googling and found out that there is a tool called eRepLogo.efi
. After reading the manual for that tool I prepared the USB drive and entered EFI Shell. Unfortunately that tool was too old and didn't work with the newer HP laptops (but if you have older one then you may try it - it's part of sp58176.exe
), using it on HP Elitebook 840 G3 (with /e
to erase or logofilename.jpg
to set) resulted in an error "Failed to read ROM".
More googling led me to the app called CustomLogoApp.efi
which was exactly what I was looking at. The only issue was that it was distributed by HP WITHOUT the required EFI shell and any documentation so it could be confusing. There is also a way to change/remove the BIOS logo using the HP Client Management Script Library (CMSL) in Powershell on Windows, but as my laptop doesn't have any OS installed I haven't tried that method.
Thanks so much for this!
Guided by your instructions I was able to remove the custom logo from my HP Z440 workstation.
Since I'm running Linux I used these files:
CustomLogoApp.efi
: Part of the 'HP Z440/Z640/Z840 Workstations BIOS Utilities for Linux'Shell_Full.efi
: https://github.com/tianocore/edk2-archive/blob/master/EdkShellBinPkg/FullShell/X64/Shell_Full.efi (caution: it's unclear to me what the source of this file is, I just tried my luck)My USB thumb drive was mapped to
fs1:
. Interestingly I couldn't usels
for it, butls
did work infs0:
(which was mapped to a SSD drive).The steps I took (same as yours, just added a note for each step):
cd fs1:
followed by [enter], make sure that the prompt is updated tofs1
CustomLogoApp.efi -e
followed by [enter], a message is shown that the custom logo was removed successfully.