cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Magnus
Level 6

ISCmdBld.exe "2012 SAB" returns 1

I'm running ISCmdBld.exe from a .Net build script on a VmWare Win7 machine and when switching to 2012 SAB from 2011 SAB, the ISCmdBld.exe just return 1. When switching back to 2011 it works fine (haven’t done any other changes).

I can't find any output from the 2012 ISCmdBld.exe at all, where can I find any logfiles?

Any suggestions how to solve this would be highly appreciated.

(When running the script on my local machine, it all works fine.)

Regards
Magnus
Labels (1)
0 Kudos
(1) Reply
Magnus
Level 6

When implementing this reattempt loop, the IsCmdBuild.exe successfully build in average on the 3:rd try.

for (int i = 0; i < 15; i++)
{
if (RunCommandIsCmdBuild() == 0)
break;
}




IsCmdBuild.exe => 0 if it has successfully build the installation.

20121001 094715: RunCommandIsCmdBuild(375): IsCmdBuild START attempt: 1
20121001 094715: RunCommandIsCmdBuild(377): WAIT
20121001 094716: RunCommandIsCmdBuild(379): IsCmdBuild STOP
20121001 094716: RunCommandIsCmdBuild(386): Got Error ExitCode: 1
20121001 094716: RunCommandIsCmdBuild(375): IsCmdBuild START attempt: 2
20121001 094716: RunCommandIsCmdBuild(377): WAIT
20121001 094717: RunCommandIsCmdBuild(379): IsCmdBuild STOP
20121001 094717: RunCommandIsCmdBuild(386): Got Error ExitCode: 1
20121001 094717: RunCommandIsCmdBuild(375): IsCmdBuild START attempt: 3
20121001 094718: RunCommandIsCmdBuild(377): WAIT
20121001 094725: RunCommandIsCmdBuild(379): IsCmdBuild STOP
20121001 094725: RunCommandIsCmdBuild(383): Got ExitCode: 0
0 Kudos