Reputation: 814
my issue: The goal is, that some exe-files will be started after installation of a Install Shield exe. The InstallShield program includes the exe-files that have to be started. All of these steps have to be without UI and user interaction.
The InstallShield-exe includes the configuraton, that after the last step, specific exe-files will be started.
All of that works fine If I don't use parameters for silent installation. (setup.exe /s /v/qr). If I use this command line parameters, only the program itself will be installed (The directory within the programfiles and the program name within the installed program and features appears). BUT none of the exe-files starts.
my question: So, what parameters I have to use for my problem?
Upvotes: 1
Views: 1875
Reputation: 15905
It sounds like you have added custom actions to start your executables somewhere in the UI sequence (perhaps on the final page of the wizard). However when you run silent installations, the entire UI sequence is skipped.
In order to launch the executables in this case, you'll need to add custom actions to the execute sequence. In order to ensure the exe doesn't launch before the wizard is exited or to avoid launching them twice if you leave the UI sequence actions, you'll want to condition the execute sequence actions so they only run in silent cases; I'd suggest referencing UILevel for the condition.
Upvotes: 3