From f526e90578bd567129006f3b90cadc6e17163842 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Mon, 29 Apr 2019 11:16:28 +0200 Subject: updater: use /qb instead of /quiet Signed-off-by: Jason A. Donenfeld --- 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 a498af3c..286cec1e 100644 --- a/updater/msirunner_windows.go +++ b/updater/msirunner_windows.go @@ -20,7 +20,7 @@ func runMsi(msiPath string) error { // BUG: The Go documentation says that its built-in shell quoting isn't good for msiexec.exe. // See https://github.com/golang/go/issues/15566. But perhaps our limited set of options // actually works fine? Investigate this! - return exec.Command(path.Join(system32, "msiexec.exe"), "/quiet", "/i", msiPath).Run() + return exec.Command(path.Join(system32, "msiexec.exe"), "/qb", "/i", msiPath).Run() } func msiSaveDirectory() (string, error) { -- cgit v1.2.3-59-g8ed1b