This should create a shortcut on the start menu for all users

This commit is contained in:
Justin Hammond 2020-05-28 00:43:21 +08:00
parent 52f20f1506
commit e9fb2a959f

View file

@ -8,6 +8,7 @@
!include "MUI2.nsh"
; ===== General =====
RequestExecutionLevel Admin
Name "${APPLICATION_NAME} ${APPLICATION_VERSION}"
OutFile "${APPLICATION_NAME}-${APPLICATION_VERSION}-installer.exe"
InstallDir "$PROGRAMFILES\${APPLICATION_NAME}"
@ -32,6 +33,9 @@ SetCompressor "lzma"
!insertmacro MUI_LANGUAGE "English"
Function .onInit
SetShellVarContext All
FunctionEnd
; ===== Installer =====
Section ""
@ -121,3 +125,4 @@ SectionEnd
Function RunApplication
ExecShell "" "$INSTDIR\ozwadmin.exe"
FunctionEnd