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
- :
- Silent Install using InstallShield 2015 limited edition
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
Sep 08, 2016
01:24 PM
Silent Install using InstallShield 2015 limited edition
How can I setup a silent install using Install Shield 2015 Limited Edition. I have tried to create a setup.iss by running several variation of the following:
setup.exe /r
setup.exe /R
setup.exe -r
setup.exe -R
with various other parameters but none have ever created a setup.iss that I can find. Does Limited Edition support silent install? How can I get this to work?
I also tried running the setup in silent mode but nothing happened. The product install did not execute. I tried the folowing:
setup.exe /s
setup.exe /s/qn
Thanks for any help.
Dick
setup.exe /r
setup.exe /R
setup.exe -r
setup.exe -R
with various other parameters but none have ever created a setup.iss that I can find. Does Limited Edition support silent install? How can I get this to work?
I also tried running the setup in silent mode but nothing happened. The product install did not execute. I tried the folowing:
setup.exe /s
setup.exe /s/qn
Thanks for any help.
Dick
- Tags:
- silent install
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 12, 2016
11:31 AM
A setup.iss file is a response file for a silent installation of InstallScript based installers, which the Limited Edition does not create.
you will want to use setup.exe /s which will run your setup silently.
Although, you will want to ensure that your dialogs either do not require user input or your installer will appear to "hang" when viewed in the task manager and never complete as a dialog that cannot be seen is awaiting input.
If you do require user input in your dialogs, such as choosing the installation directory, you will need to pass that on the command line as well.
Example:
setup.exe /s /v"INSTALLDIR=\"c:\My Files\""
/s : Silent mode
/v : Pass arguments to Msiexec (used to pass arguements to the .msi)
"INSTALLDIR=\"c:\My Files\"" (Assigns INSTALLDIR the value of c:\My Files\)
Setup.exe Command Line Parameters
https://flexeracommunity.force.com/customer/articles/en_US/INFO/Setup-exe-Command-Line-Parameters
MSI Command-Line Options
https://msdn.microsoft.com/en-us/library/windows/desktop/aa367988(v=vs.85).aspx
you will want to use setup.exe /s which will run your setup silently.
Although, you will want to ensure that your dialogs either do not require user input or your installer will appear to "hang" when viewed in the task manager and never complete as a dialog that cannot be seen is awaiting input.
If you do require user input in your dialogs, such as choosing the installation directory, you will need to pass that on the command line as well.
Example:
setup.exe /s /v"INSTALLDIR=\"c:\My Files\""
/s : Silent mode
/v : Pass arguments to Msiexec (used to pass arguements to the .msi)
"INSTALLDIR=\"c:\My Files\"" (Assigns INSTALLDIR the value of c:\My Files\)
Setup.exe Command Line Parameters
https://flexeracommunity.force.com/customer/articles/en_US/INFO/Setup-exe-Command-Line-Parameters
MSI Command-Line Options
https://msdn.microsoft.com/en-us/library/windows/desktop/aa367988(v=vs.85).aspx