wix3

WIX: How not to call ActionStart(Name=StartMetabaseTransaction) during installation

Hi, My installer would fail when installed on a machine that has no IIS installed. The features that are going to be installed doesnt need IIS. The error says "Cannot connect to Internet Information Server". In addition to that. The installer file has also a feature that requires IIS. But when I unselect that feature, the installer st...

Running copied files in wix using custom action

Hello, I'm creating an MSI installer using WiX and I have, say, a *.bat file that I'm copying to SomeFolder2 under %temp% (something like the code snippet below...) ... <Directory Id='TARGETDIR' Name='SourceDir'> <Directory Id='ProgramFilesFolder' Name='PFiles'> <Directory Id='MyDir' Name='SomeFolder'> ...