This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: silent installation
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jun 29, 2023
11:42 PM
silent installation
I am trying to do silent installation and using batch file to call setup.exe. so how can i add UI sequence input parameter inside the batch file
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jun 30, 2023
07:38 AM
If you are truly doing a silent install, you'll probably want to have that parameter in your .iss file
https://docs.revenera.com/installshield28helplib/helplibrary/InstallShieldSilent.htm
HTH
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jun 30, 2023
09:22 AM
As you know, a silent install has no UI sequence, so you need to pass parameters on the command line something like this:
setup.exe /s/v/qn /v"INSTALLDIR="<SomePath>" <ANOTHER_Parameter>=<YourParameterValue>...
Be sure to quote any strings that could have spaces or special characters.
These parameters must be PUBLIC properties.