ladiesman1792
ladiesman1792

Reputation: 283

REGISTRY issue in Visual Studio SETUP PROJECT

The installer will not proceed.

enter image description here

Upvotes: 0

Views: 165

Answers (2)

PhilDW
PhilDW

Reputation: 20780

There is indeed a bug in VS launch conditions where it will not set the 64-bit search even if it's a 64-bit setup. If you use Orca to inspect the generated MSI file and look at the RegLocator table:

http://msdn.microsoft.com/en-us/library/aa371171(v=vs.85).aspx

you'll see that the Type value hasn't set the msidbLocatorType64bit bit. The easiest detour is to set it with Orca while you're in there. Post-build scripts to update the value can be used to automatye this in a the build process.

Upvotes: 0

ladiesman1792
ladiesman1792

Reputation: 283

This solution works for me! Please note the one and only comment in the article:

http://blogs.msdn.com/b/cristib/archive/2012/09/28/10354108.aspx

Not deleting the question in case other people encounter this problem. :)

Upvotes: 0

Related Questions