Fix the silent switch for the NSIS uninstaller.

This commit is contained in:
Oliver Hamlet
2015-07-18 11:29:16 +01:00
parent 719c6527de
commit 25dd1b0860
+1 -1
View File
@@ -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;