This setup script uses [CostumMessages] so that you can easily add multi-language support to your setup and easily configure settings (like the offline dependencies directory) without looking at the [Code] part. Applications used for the script are: Inno Setup - setup engine (version 5.5.9; unicode version needed for languages like Russian). A modular InnoSetup script to download and install all available.NET Framework versions and much more. For the script are: Inno Setup. To make it easier to.
Inno Setup Silent Uninstall
I need to start the silent installation for my application with out next , next installation wizard process . Please any one help me.
1 Answer
Proper way to run the setup in silent mode is, and always be executing it with /SILENT
command line parameter. For instance this way:

After we clarified your requirement in comments I see, that you actually want to build a setup, which will run in silent mode without the mentioned command line parameter. Currently, there's no built-in way to tell the compiler, that you want to build a silent setup, so we need to workaround this by re-running the setup with the /SILENT
command line parameter when the setup is being initialized.
The following script shows this workaround:
TLamaTLama