Page 1 of 1

A mostly silent install

Posted: Sat Sep 09, 2006 10:08 am
by rtomsmith
I am creating an installer (single EXE) to be delivered over the Web. I want it to be "mostly silent", where there might be only one visible dialog (e.g. a completion notice).

Since the user invokes the installer by clicking a URL, there is really no way to pass the "/s" flag on a command line. I could handle the "silent" aspects myself in the script, of course, but the problem is the self-extractor. It seems to always display its verifying/decompressing dialog, and that doesn't meet my requirements.

Any suggestions? Thanks.

Posted: Tue Sep 12, 2006 8:57 am
by rtomsmith
Any help on this, please?

Posted: Tue Sep 12, 2006 4:51 pm
by Gizm0
Unfortunatelly, the decompressing dialog cannot be hidden..

Posted: Tue Sep 12, 2006 6:03 pm
by rtomsmith
Well, that's certainly bad news.

Then let me take this opportunity to make an "official" feature request: Please consider adding a Build setting that will signal the decompressor to not display its progress. Thanks.

Posted: Tue Sep 12, 2006 10:00 pm
by MichaelNesmith
What you could do is wrap our EXE inside your own EXE which would call our EXE with the "/s" parameter. I'm not sure how your web-launch mechanism works, so this is pretty much all the advice I can offer for now.