diff options
author | kwade00 <kevin@kevinandpatricia.com> | 2017-03-05 18:58:30 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-05 18:58:30 -0600 |
commit | 51fabe166a3e4bea29e3b6d41a2b70fa4f91c68c (patch) | |
tree | 6ee276a83bac4f333819bd27f2e9d1acc9f8a350 /project | |
parent | c771172b9b9be0c2f2079be99f577e0e31f995e4 (diff) |
Change SetShellVarContext from current to all
Diffstat (limited to 'project')
-rw-r--r-- | project/Win32BuildSetup/genNsisInstaller.nsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/project/Win32BuildSetup/genNsisInstaller.nsi b/project/Win32BuildSetup/genNsisInstaller.nsi index c9ce96ecd7..924edbdd92 100644 --- a/project/Win32BuildSetup/genNsisInstaller.nsi +++ b/project/Win32BuildSetup/genNsisInstaller.nsi @@ -163,7 +163,7 @@ InstType "Minimal" ; 3. ;Installer Sections Section "${APP_NAME}" SecAPP - SetShellVarContext current + SetShellVarContext all SectionIn RO SectionIn 1 2 3 #section is in install type Normal/Full/Minimal @@ -285,7 +285,7 @@ FunctionEnd Section "Uninstall" - SetShellVarContext current + SetShellVarContext all ;ADD YOUR OWN FILES HERE... RMDir /r "$INSTDIR\addons" |