From ae799560944fa6e71992dda7f3cea77dec22f035 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Thu, 2 May 2019 19:29:56 +0200 Subject: updater: use /qb!- instead of /qb- --- updater/msirunner_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'updater') diff --git a/updater/msirunner_windows.go b/updater/msirunner_windows.go index a11ed335..dfa921ee 100644 --- a/updater/msirunner_windows.go +++ b/updater/msirunner_windows.go @@ -17,7 +17,7 @@ func runMsi(msiPath string) error { if err != nil { return err } - cmd := exec.Command(path.Join(system32, "msiexec.exe"), "/qb-", "/i", path.Base(msiPath)) + cmd := exec.Command(path.Join(system32, "msiexec.exe"), "/qb!-", "/i", path.Base(msiPath)) cmd.Dir = path.Dir(msiPath) return cmd.Run() } -- cgit v1.2.3-59-g8ed1b