well... it's official ... I called HP (i seem to still have a warranty on it) and they said the BIOS chips (two SST49LF080A) are bad because the serial# and UUID are "hard-wired" into the special boot-block that shouldn't get written, but somehow did.
I asked if they can send me new BIOS chips and I'd put them in, but they don't do that.

even though they're soldered in, I have that SMD re-work station, so I didn't care... but it seems they have a 3 year warranty on this, that I'm entitled to get because it was a new unit, so, crap that I have to send it in, but hurray it's covered for 3 years.
You bet'ta believe I'm taking them out anyway, and making copies with my Flash Programmer, when I get the unit back.
I'd like to put the chips on PLCC SMD sockets, but that may void my warranty
I asked if they could do it, but was told "only if it were a large amout of units I had, not just one" ... so ... screw it, I'll wait 3 years to socket them, but I can remove them, copy them, and place them back, without it even looking any different.

I'M NOT GOING THROUGH THIS AGAIN!
ANYWAY ...
I found out the commands being shown in the HELP menu of the award flasher program were for the Nvidia cards with FIREWIRE and a NIC, and have nothing to do with the HP serial# or UUID# entry...
... but.. I'm sure there IS a command HP uses to do it.
I don't think they program each thin clients BIOS chips one at a time to enter the serial and UUID #'s.
That would be too stupid, even for HP.
I asked the tech for the command but he said the chips could be damaged anyway, so it may still have to be sent in.
He then totally had me kill my Thin Client now by telling me to flash it with the 1.08 BIOS ...

... I told him the web site said it was for the R1 not R2 of the 786 family, but still insisted it should work, ... well ... it doesn't even come on now DUH! .. so I guess I was right!
This is why I like to have a copy of the FULL BIOS chips contents, and the separate programmer will see all the lower level bits that don't show up, or may not show, by simply making a "backup" of the BIOS using a BIOS flashing utility
BY THE WAY- on a side note;
did you know the IBR.EXE program used to place the HP Flash Image of XPe can also be used to Capture it?
when I captured my 512MB DOM Image to my flash card it created an AUTOEXEC.BAT that gives the command syntax to do both.
Here it is if anyone wants to play with it.
(
as long as you have a UUID and Serial# in your BIOS, of course)
Code: Select all
@ECHO OFF
IF EXIST FLASH.IBR GOTO DEPLOY
GOTO CAPTURE
:CAPTURE
IBR.EXE -dok -buffer:127 -o:1 -y HD1 flash.IBR
GOTO EXIT
:DEPLOY
IBR.EXE -dok -buffer:127 flash.IBR HD1
GOTO EXIT
:EXIT