Archive: Opening Folders


Opening Folders
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


Use ExecShell with the open parameter and the path to the folder.

For example:
ExecShell "open" "c:\"


Or try:


ExecShell "open" "$INSTDIR"


-Duane