From 25dd1b0860be8626c18068af5a603cb76ed70770 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 18 Jul 2015 11:29:16 +0100 Subject: [PATCH] Fix the silent switch for the NSIS uninstaller. --- src/installer.iss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer.iss b/src/installer.iss index 6d841372..5f3228ce 100644 --- a/src/installer.iss +++ b/src/installer.iss @@ -259,7 +259,7 @@ begin end else begin if RegQueryStringValue(HKLM, 'Software\LOOT', 'Installed Path', RegValue) then begin - Exec(RegValue + '\Uninstall.exe', '/VERYSILENT', '', SW_HIDE, ewWaitUntilTerminated, ResultCode); + Exec(RegValue + '\Uninstall.exe', '/S', '', SW_HIDE, ewWaitUntilTerminated, ResultCode); end; end; end;