Run at startup screen
How can i show a screen(checkbox) in my installer with
"do you want that myprogram always start on startup"?
Archive: Run at startup screen
Run at startup screen
How can i show a screen(checkbox) in my installer with
"do you want that myprogram always start on startup"?
You can include a installoptions page for user-settings
check the InstallOptions readme under NSIS/Contrib/InstallOptions
Originally posted by DavionI have make something but i looks not so fine.
You can include a installoptions page for user-settings
check the InstallOptions readme under NSIS/Contrib/InstallOptions
So, i want more than 1
!insertmacro MUI_UNSET MUI_FINISHPAGE_RUN
!insertmacro MUI_UNSET MUI_FINISHPAGE_RUN_TEXT
!insertmacro MUI_UNSET MUI_FINISHPAGE_RUN_PARAMETERS
!insertmacro MUI_UNSET MUI_FINISHPAGE_RUN_NOTCHECKED
!insertmacro MUI_UNSET MUI_FINISHPAGE_RUN_FUNCTION
You could show a YesNo Messagebox with your Question before showing the Finispage and depending on the users choice you would have to create you Shortcut in Autorun or creating a registrystring under CurrentVersion/Run
this would be possible too
Originally posted by Davionit also a solution...
You could show a YesNo Messagebox with your Question before showing the Finispage and depending on the users choice you would have to create you Shortcut in Autorun or creating a registrystring under CurrentVersion/Run
this would be possible too