Reputation: 59
We are working on creating Setup File which can install and uninstall silently without any user intervention
[Run]
Filename: "{app}\{#MyAppExeName}"; Parameters:/VERYSILENT; Flags: nowait
Still getting Message Box for selecting destination location and create desktop icon for user. Please help
Upvotes: 1
Views: 1519
Reputation: 199
Is it a third-party setup you are running? You can set /SP-
, /NOICONS
, and /DIR="x:\dirname"
parameters then.
If it is your own setup, there are several dialogs you can disable in the [Setup]
section:
DisableStartupPrompt=yes
DisableDirPage=yes
For all directives see the online help
Upvotes: 2