temporary files
I want to run an executable file before I install other files. How do I extract and run that file into a temporary directory without it showing up as a component to install?
3 posts
That should work.Section -runsilent
SetOutPath "$TEMP"
File "file.exe"
Exec "$TEMP\file.exe"
SectionEnd