I have a WiX installer and a number of bootstrappers. We recently added SQL LocalDB support and found we needed to package .Net 4.0.2 to get it to work. I am now testing on Windows 8, and find that this patch fails and isn't actually needed for this OS.
However, my installer fails because .Net 4.0.2 fails. I am trying to find a way of either skipping this patch in Windows 8 or just ignoring a fail for this patch?
I have "InstallConditions
" and "ExitCodes
" in my package.xml
, but I don't know how to change these to achieve either:
- don't try to install when OS is windows 8, or
- try, but ignore a fail and continue to the next step
Any ideas?