Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Disable silent installation


1 reply to this topic

vidyak

vidyak
  • Members
  • 5 posts

Posted 01 October 2003 - 15:02

This may sound as a strange requirement but does anybody know how to disable silent installation?

My setup accepts a variety of command line switches and it's very easy for user to launch a silent installation by mistake. I want to disable silent installation or at least detect it somewhere in my script before the program starts copying files.

Thanks in advance.

gribbler

gribbler
  • Members
  • 2 posts

Posted 16 October 2003 - 14:29

try something like:

if( MODE = SILENTMODE )

// do something

else

// do something else

endif;