I want to display this page with condition like this :
But IfFileExist must be in a function ! I try this tooIfFileExists $INSTDIR\keep gotolaunch dontlaunch
gotolaunch:
!define MUI_FINISHPAGE_RUN
!define MUI_FINISHPAGE_RUN_FUNCTION "LaunchLink"
dontlaunch:
But the FINISHPAGE_RUN is display🙁!define MUI_FINISHPAGE_RUN
!define MUI_FINISHPAGE_RUN_FUNCTION "LaunchLink"
(...)
Function LaunchLink
IfFileExists $INSTDIR\keep gotolaunch dontlaunch
gotolaunch:
ExecShell "" "$DESKTOP\${PRODUCT_NAME}.lnk"
dontlaunch:
FunctionEnd
Is there another solution ?
Thanks