0

The installer will not proceed.

enter image description here

Alex
  • 8,245
  • 8
  • 46
  • 55
ladiesman1792
  • 243
  • 2
  • 5
  • 21
  • Please help me with the settings. I believe I did everything right but I may be missing something. Please see the IMAGE LINK above. Thanks for the help! – ladiesman1792 Oct 21 '14 at 06:42

2 Answers2

0

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. :)

ladiesman1792
  • 243
  • 2
  • 5
  • 21
0

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.

PhilDW
  • 20,260
  • 1
  • 18
  • 28