Is it possible to use same Inno Setup installer for installing new or updating/upgrading application. For example If the application is already installed the installer will check current version against newly availible. If it is true then I would like the installation procedure to be silent, meaning showing only the progress of update and not all availible installation features (e.g. folder location e.t.c). Thanks.
=======
The solution to the problem was :
Passing the parameters /SILENT/SUPPRESSMSGBOXES taken from
http://www.jrsoftware.org/ishelp/index.php?topic=setupcmdline
AppId, so all you need is to keep theAppIdsame for the whole lifetime of your installer. The next task is little more complicated because if I get it right, you want to check if the application is already installed and if yes, run the installation as silent. Did I get your requirement right ? - TLama