c# - Adding prerequisite for msi in Installshield -
I would like to know whether it is possible to connect to an MSI installer already through installstall. (This was visible as possible) I am able to create an exe that works properly, but if I try to get an MSI installer I get the following error:
< P> -7067: InstallShield Prerequisites in Your Project A Setup.exe Setup Launcher is required if you are building a release that includes InstallShield Prerequisites. Change your release settings to create Setup.exe, or delete anything from your project.
In the redistribution window I have added the .NET 4.5 framework, and fails for MSI in all build locations anyway in its build location download from the web
The error message is telling you what the problem is. For single MSI your product configuration / release build settings are set An MSI Windows Installer can not install MSI due to mutex constraints. Prefix a bootstrapper (.exe) and then install your MSI. Change your build settings to EXE and the error will end.
Comments
Post a Comment