Skip to content
⌘ NSIS Forum Archive

Using MUI_FINISHPAGE_RUN ...

2 posts

Cdzitu#

Using MUI_FINISHPAGE_RUN ...

I need to make the user choose to run a program in the end of the instalation but the path to that program need some parameters like, for instance: $INSTDIR\file.exe -parameter value -parameter2 value.

Can i use this command this way?

!define MUI_FINISHPAGE_RUN "$INSTDIR\file.exe -parameter value -parameter2 value"

Thanks,
opher#
!define MUI_FINISHPAGE_RUN "$INSTDIR\file.exe"
!define MUI_FINISHPAGE_RUN_PARAMETERS "-parameter value -parameter2 value"

Good luck.