Click here to Skip to main content
15,887,335 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello
I am using INNO to make a setup file of my application, i want to install one more exe with the my application which should be hidden from user, i mean user should not know about it,
I have referred links This but the GUI of exe is visible.
I tried some ways but does not achieve my task

For information: that third party exe asks for "company name" while installing.

What I have tried:

"{app}\setup.exe"; Parameters: "install"; Flags: runhidden

Filename: "msiexec.exe"; Parameters: "/q /i ""{app}\\setup.exe""";Description: "Bio RealTime"; Flags: waituntilterminated
Posted
Updated 17-Jun-18 10:43am
v2

You could try runminimized if runhidden does not work, see: Inno Setup Help[^]
If this also does not work you need to rewrite your application so that when the parameter install is passed no GUI will be shown.
Another Inno Setup flag you can try is VERYSILENT, but I think this will not help in your case.
 
Share this answer
 
v2
Comments
Nitin Surya 17-Jun-18 3:49am    
what could be the best solution for this?
You have no business subverting the installation process of a "third party software".
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900