I'm kind of a noob when it comes to windows API.

I try to create a registry key in the 64bit view of the registry, from a 32bit application using

System::Call "${RegCreateKeyEx}(${HKEY_LOCAL_MACHINE}, 'SOFTWARE\SecureW2\Methods\Default\Profiles\26\ConfigData', 0, 'REG_BINARY', 0x00000000L, 0x0100, NULL, .r5, .r6) .r3"

(It's nsis scripting), but it doesn't seem to work.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You might be running into registry redirect.

Redirected keys are mapped to physical locations under Wow6432Node. For example, HKEY_LOCAL_MACHINE\Software is redirected to HKEY_LOCAL_MACHINE\Software\Wow6432Node.

http://msdn.microsoft.com/en-us/library/aa384232%28VS.85%29.aspx

link|improve this answer
Yeah I knew that. That's what the 0x0100 is for (msdn.microsoft.com/en-us/library/ms724072(VS.85).aspx) I'm just not sure if the rest of the arguments are correct. – George Kastrinis Mar 22 '10 at 9:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.