Skip to content
⌘ NSIS Forum Archive

problems with MUI_FINISHPAGE_RUN

2 posts

thek#

problems with MUI_FINISHPAGE_RUN

Hello Guys

I have a problems with MUI_FINISHPAGE_RUN
I set it to run program to create licensing information
!define MUI_FINISHPAGE_RUN '$INSTDIR\program\ADTGetLicenseInfo.exe /outfile $INSTDIR\Sendtoxxx.txt'
But it fails
If I check the Logfile I see the following
Exec: command=""d:\XXXXX_V3.3.0\program\ADTGetLicenseInfo.exe /outfile d:\XXXXX_V3.3.0\SendtoXXX.txt""
Exec: failed createprocess (""d:\XXXXX_V3.3.0\program\ADTGetLicenseInfo.exe /outfile d:\XXXXX_V3.3.0\SendtoXXX.txt"")

but the programm exist
running the stuff from the command line also works??
adding the same command to .onInstSuccess is also ok?

somebody know what I'm doing wrong?
Netsurfer24#
Try to add your parameter(s) per:
MUI_FINISHPAGE_RUN_PARAMETERS parameters

See: http://nsis.sourceforge.net/Docs/Mod...UI/Readme.html
-> Page settings -> Finish page settings

Gunther