in reply to TieRegistry REG_BINARY

If it is binary data and you want it to look like it does in Regedit you need to unpack it as hex.

print unpack "h*", $binary_data;

cheers

tachyon