win7 app problem with MUI_FINISHPAGE_RUN
Hi,
I have a .net application which can accept an image on a drag&drop event.
When I install the application on Win7 and run it automatically from the last page of the installer, the drag&drop doesn't work in the app. When I close and run my app from the installed folder
it works. This happens only in Win7 - in XP/Vista the drag&drop works even when the app is run directly from the NSIS installer.
I've tried both
!define MUI_FINISHPAGE_RUN "$INSTDIR\myapp.exe"
and
Function autorun
SetOutPath $INSTDIR
Exec '"$INSTDIR\myapp.exe"'
Functionend
!define MUI_FINISHPAGE_RUN
!define MUI_FINISHPAGE_RUN_FUNCTION autorun
Grateful for any suggestions on what might be causing the problem - i.e. is there a different mode how to run the executable from the script?