To find out task names, run the installer with the /SAVEINF=path
, to get it save its settings to an .inf
file. If you check the task, you are interested in, during the installation, you will see this directive in the .inf
file:
Tasks=thetask
Now you have the task name, you can use with /MERGETASKS
.
Another way is to decompile the installer to see the [Tasks]
section.
You can use e.g. Inno Setup Unpacker.
Though it's also possible the option does not have any task associated.
What is unfortunately this case (there are no task checkboxes in the installer), and even more.
When you decompile the installer, you will see that it does not create the shortcut itself (so no Inno Setup switch helps here). The shortcut is probably created by Balsamiq_Mockups_AIR.exe
executed by the installer with -desktopShortcut
switch:
[Run]
Filename: "{tmp}\Balsamiq_Mockups_AIR.exe"; \
Parameters: "-silent -desktopShortcut -programMenu"; \
BeforeInstall: "UninstallPreviousVersion"