[Solved] Tool to dump all uuid from BIOS

REQUEST: I’m looking to change the BIOS splash boot logo on a motherboard and the Change Logo Tool v.5 that I found freezes [ Not Responding / locks up ] after hitting replace image.

I’d like to try dumping all the modules, finding the UUID of the splash image and then replacing with UEFITool. I read there is a tool called PMT259 that can do this but I can’t find it anywhere.

Is this tool or similar available?


EDIT by Fernando: I have put the prefix “Request” into the title. Otherwise the visitors may think, that you are offering such tool.

@ Fernando : thanks for making my request clear

Found UEFIFind and UEFIExtract in UBU so maybe I have solved my own request.

uefifind bios.bin body list
uefifind bios.bin all list

Its been a long time since I wrote Win .BAT file so here goes:


1
2
3
4
5
6
7
8
 
setlocal EnableDelayedExpansion
set "uuid_cnt=0"
for /F "delims=" %%f in ('uefifind bios.bin all list') do (
set /a uuid_cnt+=1
set "uuid[!output_cnt!]=%%f"
)
mkdir dump
for /L %%n in (1 1 !uuid_cnt!) DO uefiextract bios.bin !uuid[%%n]! > dump\!uuid[%%n]!
 



There is also UEFIReplace , after find JPG in dump, replace and re-flash BIOS

@e97 :
As soon as you have solved your problem (yourself or with the help of other Forum members), you can edit the start post and replace the prefix "Request" by "Solved".
Good luck!