We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In "boringInstaller.nsh" line 9
Function StartApp ${if} ${Updated} ${StdUtils.ExecShellAsUser} $0 "$SMPROGRAMS\${PRODUCT_FILENAME}.lnk" "open" "--updated" ${else} ${StdUtils.ExecShellAsUser} $0 "$SMPROGRAMS\${PRODUCT_FILENAME}.lnk" "open" "" ${endif} FunctionEnd
In "common.nsh" line 41
!ifdef MENU_FILENAME StrCpy $startMenuLink "$SMPROGRAMS\${MENU_FILENAME}\${PRODUCT_FILENAME}.lnk" !else StrCpy $startMenuLink "$SMPROGRAMS\${PRODUCT_FILENAME}.lnk" !endif
This means if define MENU_FILENAME(nsis.menuCategory = true) the link will not be found, and app doesn't run after finish install. My solution is:
boringInstaller.nsh line 9
Function StartApp ${if} ${Updated} ${StdUtils.ExecShellAsUser} $0 "$startMenuLink" "open" "--updated" # ${StdUtils.ExecShellAsUser} $0 "$SMPROGRAMS\${PRODUCT_FILENAME}.lnk" "open" "--updated" ${else} ${StdUtils.ExecShellAsUser} $0 "$startMenuLink" "open" "" # ${StdUtils.ExecShellAsUser} $0 "$SMPROGRAMS\${PRODUCT_FILENAME}.lnk" "open" "" ${endif} FunctionEnd
installer.nsi line 3
!include "allowOnlyOneInstallerInstance.nsh" Var startMenuLink Var desktopLink
The text was updated successfully, but these errors were encountered:
You are hero. Thanks a lot for fixing #1151.
Sorry, something went wrong.
683d58c
No branches or pull requests
In "boringInstaller.nsh" line 9
In "common.nsh" line 41
This means if define MENU_FILENAME(nsis.menuCategory = true) the link will not be found, and app doesn't run after finish install.
My solution is:
"boringInstaller.nsh"
boringInstaller.nsh line 9
installer.nsi line 3
The text was updated successfully, but these errors were encountered: