5
votes

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????

2

2 Answers

23
votes

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.

0
votes

I found the solution for my question with the reference as below link "http://www.jrsoftware.org/ispphelp/index.php?topic=isppcc", and the answer is, "ISCC.exe /Q "mypath\myscript.iss"