The Exection section specifies the command(s) to be executed at the end of installation.
See the example below for the key and value syntax. The message may contain the following sequences which are passed to the Windows message box appropriately:
The command can be omitted, in which case the message box will be displayed but no command executed.
[Execution] ; Zero or more program specifications. ; ; [W][?]['<Message>']=<command spec> ; ; W: Wait for program termination ; ?: Ask yes/no ; Message: Message in message box ; Command spec: Command line, where {n} is replaced by directory ; ; E.g. ; ; W=notepad {1}readme.txt ; Wait for termination ; W?'Read the ReadMe now?'=notepad {1}readme.txt ; Ask if execute ; 'Read this file carefully!'=notepad {1}readme.txt ; Messagebox, then execute ; dummy=notepad {1}readme.txt ; No message, just execute W?'Read the ReadMe now?'=notepad.exe {1}readme.txt