|
|
Thread Tools | Rating: | Display Modes |
#1
|
|||
|
|||
How can I avoid exit code -1073741819 when compiling InstallShield projects?
InstallShield sometimes returns this spurious exit code on (apparent) success (at least since v. 9: http://www.kinook.com/Forum/showthread.php?threadid=438). To cause VBP to ignore that exit code, add a vbld_StepDone script event like this to the InstallShield step (VBScript, requires Visual Build Professional 6 or later):
Code:
Sub vbld_StepDone() If CLng(Application.ExpandMacros("%RUNPROGRAM_EXITCODE%")) = -1073741819 Then Step.BuildStatus = vbldStepStatSucceeded End If End Sub To reproduce the problem outside of VBP: 1) Check the 'Log command-line...' checkbox on the Options tab of the InstallShield action 2) Rebuild the step 3) Using Notepad or a text editor, create a batch file with the ISCmdBld.exe command-line from the build log on the first line, followed by echo %errorlevel% on the second line, and run the batch file at a Command Prompt. |
|
|