Re: [WiX-users] Registry Question...

2010-12-02 Thread Blair
If NSIS is 32-bit and it doesn't disable Registry redirection then when it asks for "HKEY_LOCAL_MACHINE\SOFTWARE\My Company" the OS will give it "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\My Company", meaning you have no problem. Read more about it here: http://msdn.microsoft.com/library/aa384232.as

Re: [WiX-users] Registry Question...

2010-12-01 Thread James Johnston
Familiarize yourself with http://msdn.microsoft.com/en-us/library/ms724072(VS.85).aspx If you don't want your entry to go in the 32-bit entry then you have to specify Win64="yes" on your component, but this makes / requires your MSI to be supporting 64-bit. 32-bit apps don't need to worry about W

Re: [WiX-users] Registry Question...

2010-12-01 Thread Pally Sandher
http://msdn.microsoft.com/en-us/library/aa384232.aspx Your MSI is built for x86 platforms. Build it for x64 if you don't want it to do that on x64 platforms. Palbinder Sandher Software Deployment & IT Administrator T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design

Re: [WiX-users] Registry question.

2008-07-30 Thread Alexander Shevchuk
Something like this: PROP1 NOT PROP1 AND PROP2 NOT PROP1 AND NOT PROP2 Because AppSearch does not guarantee the order of search execution you need to search for both regkeys. If you think you absolutely must look for an alternative key only if first regkey does not exi