Not sure how to go about this, and well I can't seem to find anything about how to do it either.
I have a REG_BINARY key which is in hexadecimal. When exported from regedit, it looks like this:
"License"=hex:xx,xx,xx,xx,xx,xx,xx,xx,xx,xx,xx,xx,xx,xx,xx,xx
Now in AutoIt I've tried doing:
RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Raxco\PerfectDisk\10.0", "License", "REG_BINARY", "xx,xx,xx,xx,xx,xx,xx,xx,xx,xx,xx,xx,xx,xx,xx,xx")
I've tried spaces (instead of commas) and removing the commas as well.
Also have some DWORD keys as well, and exported from regedit they look like so:
"Wizard"=dword:0000000f
And the AutoIt code I've tried:
RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Raxco\PerfectDisk\10.0", "Wizard", "REG_DWORD", "00 00 00 0f")
Also tried without spaces too.
Hopefully somebody on here has successfully used these functions before and can help me