How would I make my installer open the installation folder while it's copying the files? So that way the folder will be open when the installer exits, and the user can click on the application.
runik
Opening Folders
3 posts
Use ExecShell with the open parameter and the path to the folder.
For example:
ExecShell "open" "c:\"
For example:
ExecShell "open" "c:\"
Or try:
-Duane
ExecShell "open" "$INSTDIR"