From ffd3b8591dcb4b22dc318b6a39bb4e2ac8140f42 Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Mon, 8 Oct 2012 20:40:25 +0300 Subject: [PATCH] subsurface.nsi: install program shortcuts for all users http://nsis.sourceforge.net/Docs/Chapter4.html#4.9.7.7: "Sets the context of $SMPROGRAMS and other shell folders. If set to 'current' (the default), the current user's shell folders are used. If set to 'all', the 'all users' shell folder is used" Specific to the Windows installer. Signed-off-by: Lubomir I. Ivanov Signed-off-by: Dirk Hohndel --- packaging/windows/subsurface.nsi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packaging/windows/subsurface.nsi b/packaging/windows/subsurface.nsi index 74aad9fba..7d896f126 100644 --- a/packaging/windows/subsurface.nsi +++ b/packaging/windows/subsurface.nsi @@ -88,6 +88,7 @@ # Default installer section Section + SetShellVarContext all # Installation path SetOutPath "$INSTDIR" @@ -152,6 +153,7 @@ SectionEnd # Uninstaller section Section "Uninstall" + SetShellVarContext all # Delete installed files Delete "$INSTDIR\*.dll"