Reputation: 7
Has anyone successfully installed IDS PEAK silently through Inno Setup or a script? What flags should I use to ensure the installation runs without user interaction and actually installs the software? (Setup_initiAL.iss )
I’m working on a core installer and trying to include IDS PEAK vx.x.x. for silent installation. Initially, I used the following:
Filename: "{tmp}\ids_peak_2.14.0.0.exe"; StatusMsg: "Installing IDS PEAK 2.14.0.0"; Parameters: "/VERYSILENT /NORESTART"; Components: drivers\ids_peak
This worked to some extent—it launched the IDS installer but still brought up the ids installer to user GUI for language selection (English/German). To fix this, I added the /LANG=English parameter:
Filename: "{tmp}\ids_peak_2.14.0.0.exe"; StatusMsg: "Installing IDS PEAK 2.14.0.0"; Parameters: "/VERYSILENT /NORESTART /LANG=English"; Components: drivers\ids_peak
Now it skips the prompt entirely, but the IDS PEAK software doesn’t install at all.
Upvotes: 1
Views: 36