Srishti
Srishti

Reputation: 355

Creating .exe from command line in installshield

can we make .exe file from command line in installshield, and that .exe file will open a text file? I know how to create .exe file from Install shield UI but i'm not finding any stuff on creating an exe from command line using installshield.

Upvotes: 2

Views: 783

Answers (1)

Slava Ivanov
Slava Ivanov

Reputation: 6912

If your InstallShield project has release (in my examples release called "Othello Beta") which produces .exe package and you would like to build it from command line, you need to use automation. For this you would use:

ISCmdBld.exe: Hot to use ISCmdBld.exe and example would be:

ISCmdBld.exe -p "C:\InstallShield 2012 Spring Projects\My Othello Project\Othello.ism" -r "Othello Beta" -c COMP -a "Build 245"

IsSABld.exe: This will looks like the following:

IsSABld.exe" -p "C:\InstallShield 2012 Spring Projects\My Othello Project\Othello.ism" -b "C:\InstallShield 2012 Spring Projects\My Othello Project" -r "Othello Beta"

Upvotes: 3

Related Questions