diff options
-rwxr-xr-x | branding/templates/windows/template.nsi | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/branding/templates/windows/template.nsi b/branding/templates/windows/template.nsi index e98854f..ce05d27 100755 --- a/branding/templates/windows/template.nsi +++ b/branding/templates/windows/template.nsi @@ -98,7 +98,13 @@ Section /o "TAP Virtual Ethernet Adapter" SecTAP SectionEnd Section "Uninstall" - ExecShellWait "runas" "$INSTDIR\bitmask_helper.exe" 'remove' + ; this could fail: uninstalling old nssm helper + ExecShellWait "runas" '"$INSTDIR\nssm.exe" stop $applicationNameLower-helper' + ExecShellWait "runas" '"$INSTDIR\nssm.exe" remove $applicationNameLower-helper confirm' + + ; now we uninstall the new-style go helper + ExecShellWait "runas" '"$INSTDIR\bitmask_helper.exe" remove' + Delete $INSTDIR\readme.txt Delete $INSTDIR\helper.log |