Harsha
Harsha

Reputation: 1879

Disabling Message Box for Components from INNO Setup

I am trying to install components (KB932716) and also MS Feature Pack Two. I am trying to add these in a single package and build the installer using Inno Setup.

When I run the set up, components shows up a huge message box which we don't like to show during installation. I tried \SILENT and \VERYSILENT switches but no use.

Any help on how to disable this message box during installation.

Upvotes: 0

Views: 830

Answers (1)

Sertac Akyuz
Sertac Akyuz

Reputation: 54772

Use /quiet switch for running the component (note the slash is not a backslash).

[Run]
Filename: {tmp}\WindowsServer2003-KB932716-v2-x86-ENU.exe; Parameters: /quiet; WorkingDir: {tmp}; Components: ....

When in doubt, ask the hotfix the command lines it supports:
WindowsServer2003-KB932716-v2-x86-ENU.exe /help

...
/help      Displays this message
SETUP MODES
/quiet     Quiet mode (no user interaction or display)
/passive   Unattended mode (progress bar only)
...

Upvotes: 2

Related Questions