- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- How to Install a single executable installation silently??
- 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
How to Install a single executable installation silently??
Hello
I am using installshield to make a single executable installation . The installation package name is myproduct.exe, I want to make myproduct.exe silently install. I try to use command line myproduct.exe /s, which actually does nothing. I made setup.iss using setup.exe /r, it can be used by setup.exe /s for silent installation, can it be used by myproduct.exe?
How can I make my myproduct.exe install silently? ?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Hi @JerryHTG,
Thank you for your post.
Could you please provide a screenshot of your Help > About InstallShield screen from your copy of InstallShield that you are using to configure the affected project? This allows me to match the InstallShield service pack level and edition.
Which project type are you using? Basic MSI? InstallScript? Or InstallScript MSI? The project type should be indicated in square brackets on the InstallShield title bar when your affected project is open: [<Project Type>]
Could you please provide your affected project .ism file as a file attached to a private message sent to me directly?
Please let us know if you have any questions or concerns. Thanks!
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Hi @JerryHTG
If your project type is Basic MSI, below command will work along with creating logSilent install with log:
==========================
setup.exe /s /v"/qn" /L*v c:\Myinstall.log"
if you are creating a installscript or installscript MSI project, You need to create response file, below help link have details on how to create a response file and how to use it
EX:
First please try generating a response file using the parameter shown below:
"C:\TestInstaller\Setup.exe" -r -f1C:\LanSafeSilentFile.iss
Then run the setup again using the created response file and see it works.
"C:\TestInstaller\Setup.exe" -s -f1C:\LanSafeSilentFile.iss
