Hello everyone,
I tries to insert a password for Vnc server by a RegWrite command, but have problem with that.
The problem is that the password is showed in the registry as REG_BINARY type,
When I export it, I get value like this:
[HKEY_CURRENT_USER\Software\ORL\WinVNC3]
"Password"=hex:49,90,e2,3d,ed,0b,be,3b
And then when I put this value in the RegWrite command I don’t get the right value. I assume some conversion is needed. I read this thread
http://www.autoitscript.com/forum/index.php?showtopic=107881&st=0&p=769989&hl=REG_BINARY&fromsearch=1&#entry769989
about creating a REG_BINARY entry but yet didn't what should I do or how to convert this " hex:49,90,e2,3d,ed,0b,be,3b" into the AutoIt RegWrite function.
My line is this, but the value is not good
RegWrite ( "HKEY_CURRENT_USER\Software\ORL\WinVNC3", "Password" ,"REG_BINARY"," 4990e23ded0bbe3b")
Thanks for any help!