Create 64 bit registry key (non-WOW64) from a 32 bit application

Posted by James Newton-King on Stack Overflow See other posts from Stack Overflow or by James Newton-King
Published on 2010-02-04T03:12:20Z Indexed on 2010/05/28 21:22 UTC
Read the original article Hit count: 406

Filed under:
|
|
|
|

I have a Visual Studio installer that is creating some registry keys:

HKEY_LOCAL_MACHINE\SOFTWARE\MyApp

but the registry keys it is creating are automatically appearing under Wow6432Node:

HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\MyApp

How do I ignore the Wow6432Node when creating registry keys in my C# code being executed by the msi?

© Stack Overflow or respective owner

Related posts about 64bit

Related posts about msi