I want the configuration page to launch after installing and starting the services, but for the life of me I cannot get this working.
I tried:
I have tried:
!define MUI_FINISHPAGE_SHOWREADME http://localhost:5000/
!define MUI_FINISHPAGE_LINK "Show the agent configuration screen"
I have tried putting
!define MUI_FINISHPAGE_SHOWREADME http://localhost:5000/
!define MUI_FINISHPAGE_SHOWREADME_TEXT "Launch Agent Configuration Page"
before my
!define MUI_FINISHPAGE_RUN_FUNCTION FinishedInstall
Function FinishedInstall
ExecShell "open" "http://localhost:5000/"
FunctionEnd
...and none of these work. I don't get any errors; it's just like I didn't put anything at all. The text components show up, but the link never launches a browser with the link.
!insertmacro MUI_PAGE_INSTFILES
What am I doing wrong?