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: Run Suite installer in Silent mode
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
‎Jul 13, 2016
08:55 AM
Run Suite installer in Silent mode
Hi ,
We created a suite installer which is having 20 Installscript MSI projects exes as packages, we need to install/upgrade this suite installer in silent mode.
We are running the suite installer through command prompt using MySuite.exe /silent command, but we can see the UI related to those packages, though Suite installer related dialogs are not shown.
Can anybody suggest how to run(fresh installation/upgrade) the Suite installer in Silent mode?
Thank in advance
We created a suite installer which is having 20 Installscript MSI projects exes as packages, we need to install/upgrade this suite installer in silent mode.
We are running the suite installer through command prompt using MySuite.exe /silent command, but we can see the UI related to those packages, though Suite installer related dialogs are not shown.
Can anybody suggest how to run(fresh installation/upgrade) the Suite installer in Silent mode?
Thank in advance
(13) Replies
Not applicable
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 13, 2016
10:25 AM
sureshkottakki wrote:
Hi ,
We created a suite installer which is having 20 Installscript MSI projects exes as packages, we need to install/upgrade this suite installer in silent mode.
We are running the suite installer through command prompt using MySuite.exe /silent command, but we can see the UI related to those packages, though Suite installer related dialogs are not shown.
Can anybody suggest how to run(fresh installation/upgrade) the Suite installer in Silent mode?
Thank in advance
Sounds like you need to propagate the silent switch setting through to the InstallScript MSI projects via the package MSI EXE command line. You can use a suite property to do that and set it appropriately.
The suite property "ISSilentInstall" should help you set the command line value correctly. Actually not sure if this is available in IS 2014 - I use 2015.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 19, 2016
04:26 AM
Hi Hysteresis,
We have converted our projects to IS 2015 now, can you please brief us what needs to be done? What is the property value(for ISSilentInstall) we need to set and pass it in exe command line?
Thanks in advance
We have converted our projects to IS 2015 now, can you please brief us what needs to be done? What is the property value(for ISSilentInstall) we need to set and pass it in exe command line?
Thanks in advance
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 22, 2016
07:24 AM
Hi,
Any update on this please???
Any update on this please???
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 22, 2016
09:34 AM
You can add the parameters to each packages EXE Silent Command line, in the packages Install section.
Its under the packages Operation>Install>EXE Silent Command Line section
Its under the packages Operation>Install>EXE Silent Command Line section
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 25, 2016
07:22 AM
Hi,
Last week I tried to pass /v"ISSilentInstall=true" from Suite installer to each packages in EXE Silent Command line , but not able to run in silent
Last week I tried to pass /v"ISSilentInstall=true" from Suite installer to each packages in EXE Silent Command line , but not able to run in silent
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 25, 2016
09:39 AM
I think you want to run it with the Silent command switch. "/s"
The documentation states to use "/s" for Installscript MSI projects but you must FIRST create the response file.
The documentation states to use "/s" for Installscript MSI projects but you must FIRST create the response file.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 26, 2016
03:52 AM
Hi,
I have created the .iss file and added that file in support directory and passing /s /f1"[SETUPSUPPORTDIR]\Setup.iss" in EXE Silent Command Line setting .
But the .iss file created while fresh installation does not work while upgrade and .iss file created while upgrade does not work for fresh installation , so this is not working for us, we don't want to change .iss file everytime because we are not sure whether it is the fresh installation or its an upgrade in production.
I have created the .iss file and added that file in support directory and passing /s /f1"[SETUPSUPPORTDIR]\Setup.iss" in EXE Silent Command Line setting .
But the .iss file created while fresh installation does not work while upgrade and .iss file created while upgrade does not work for fresh installation , so this is not working for us, we don't want to change .iss file everytime because we are not sure whether it is the fresh installation or its an upgrade in production.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 27, 2016
09:24 AM
The .iss files where a major headache for me as well so i moved all my projects to Basic MSI projects and that solves ALL the problems with silent installs. Might be the only option you have.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 28, 2016
08:54 AM
We can't move our projects to Basic MSI projects , we have lot of installscript code involved, we need to use Installscript MSI projects only
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 29, 2016
09:47 AM
If your needing to detect upgrade scenarios you can detect the "IS_MAJOR_UPGRADE" property and then use the appropriate .iss file at that point.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 02, 2016
09:55 AM
Hi,
Through Suite installer we are passing this /s /f1"[SETUPSUPPORTDIR]\Setup.iss" in EXE Silent Command Line setting , it is not possible to change the iss file according to Upgrade or fresh installation at run time
Through Suite installer we are passing this /s /f1"[SETUPSUPPORTDIR]\Setup.iss" in EXE Silent Command Line setting , it is not possible to change the iss file according to Upgrade or fresh installation at run time
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 03, 2016
09:35 AM
What if you create a small piece of installscript code to set the fresh install or upgrade .iss path into a PROPERTY and then on suite initialization you call that installscript code to set the PROPERTY based on if an upgrade is detected or a fresh install is detected? That would probably work.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 16, 2016
02:21 AM
Can you suggest how to check whether the package is running in fresh installation or upgrade?