views:

175

answers:

1

I'm running Visual Studio 2008 SP1, and I'm getting the following error when trying to compile my WiX projct:

Could not find required file 'setup.bin' in 'C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Engine

I've got Windows Installer 3.0 and the Windows Platform SDK installed. I've got a Microsoft SDKs\Windows\v6.0A directory, but there is no Boostrapper directory. Where can I get this?

+1  A: 

Which Windows SDK do you have installed? I installed this one a few months back and it included the bootstrapper

VoidDweller
I ran that, but it said I had everything installed. It turns out, the problem is that the bootstrapper directory is in Program Files (x86), but WiX is looking in Program Files. Any idea how to get WiX to look in the right place?
Mike Pateras
Try this: http://www.mail-archive.com/[email protected]/msg01750.html
VoidDweller
This should allow you to specify a bootstrapper path: http://wix.sourceforge.net/manual-wix3/install_dotnet.htm
VoidDweller