I want to compile the innosetup script in Silent mode using command prompt. Using this method, i can compile the innosetup script "Compil32 /cc "mypath\myscript.iss" Then compilation happened successfully,but innosetup script window opening during compilation, i don't want to open the innosetup scrip window during compilation,How can i proceed that using the below link http://www.jrsoftware.org/ispphelp/index.php?topic=isppcc
In that link they provide "/Q" command line, but i don't know where to use the command line for silent compilation. Any help????
Inno Setup is a free installer for Windows programs by Jordan Russell and Martijn Laan.
/SUPPRESSMSGBOXESInstructs Setup to suppress message boxes. Only has an effect when combined with '/SILENT' or '/VERYSILENT'. The default response in situations where there's a choice is: Yes in a 'Keep newer file? ' situation.
Inno Setup is a free software script-driven installation system created in Delphi by Jordan Russell. The first version was released in 1997. Inno Setup. Screenshot of the Inno Setup IDE running on Windows 7. Developer(s)
To prevent this behavior, you can suppress the log file by specifying /LogFile= (with no filename argument) after Installutil.exe on the command line.
Don't use Compil32
, which is the GUI compiler. Use ISCC.EXE
instead, which is the command-line compiler and supports a /q
switch:
iscc /q mypath\myscript.iss
For more info on what command-line options are available, just run iscc /?
from a command prompt.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With