"WriteRegBIN" with empty values ?
Hi,
I'm trying to create an improved installer of an existing program using NDIS. Upon install the application will create a "REG_BINARY"-type key in the registry without setting a value for it. In Regedit it looks like this
NameOfValue (zero-length binary value)
and if I export it to a .reg-file it's like this
"NameOfValue"=hex:
The application seems to use this on its first run for some auto-detection-routines. I've already tried a lot to mimic this, but nothing worked so far. :(
(Here are some things I have already tried:
WriteRegBIN HKLM "Path" "NameOfValue" ""
WriteRegSTR HKLM "Path" "NameOfValue" ""
WriteRegDWORD HKLM "Path" "NameOfValue" "0x0")