From 7c6b64c13e5dba7c64bd819d40bd02c9fefca392 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 6 Oct 2019 23:37:28 -0500 Subject: [PATCH] Use CheckRunning to close SMXConfig before uninstalls too. --- smx-config/installer/SMX.nsi | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/smx-config/installer/SMX.nsi b/smx-config/installer/SMX.nsi index 0274117..dd70ba6 100644 --- a/smx-config/installer/SMX.nsi +++ b/smx-config/installer/SMX.nsi @@ -72,9 +72,11 @@ Function InstallMSVCRuntime FunctionEnd # Global variables and lots of gotos. That's all NSIS can do. I feel like I'm 8 again, writing in BASIC. -Function CheckRunning +# Also, we need to use some macro nastiness to convince NSIS to include this in both the installer and uninstaller. +Var /Global "ShutdownRetries" +!macro myfunc un +Function ${un}CheckRunning # Reset ShutdownRetries. - Var /Global "ShutdownRetries" StrCpy $ShutdownRetries "0" retry: @@ -113,13 +115,17 @@ failed_to_shut_down: CantShutdownAutomatically: # SMXConfig is running, but it's an older version that doesn't have a shutdown signal. Ask the # user to shut it down. Retry will restart and check if it's not running. - MessageBox MB_RETRYCANCEL|MB_ICONEXCLAMATION "Please close SMXConfig before updating." /SD IDCANCEL IDRETRY retry IDCANCEL cancel + MessageBox MB_RETRYCANCEL|MB_ICONEXCLAMATION "Please close SMXConfig." /SD IDCANCEL IDRETRY retry IDCANCEL cancel Quit cancel: Quit done: FunctionEnd +!macroend + +!insertmacro myfunc "" +!insertmacro myfunc "un." Page custom CheckRunning Page directory @@ -146,7 +152,12 @@ Section "UninstallString" "$\"$INSTDIR\uninstall.exe$\"" SectionEnd +#Section "un.CheckRunning" +#SectionEnd + Section "Uninstall" + # Make sure SMXConfig isn't running. + Call un.CheckRunning Delete $INSTDIR\SMX.dll Delete $INSTDIR\SMXConfig.exe Delete $INSTDIR\uninstall.exe