From 7566cc3efd4b28ad880811308de8768112dc7b83 Mon Sep 17 00:00:00 2001 From: mikiher Date: Thu, 4 Jan 2024 14:49:36 +0200 Subject: [PATCH] When checking for updates, run installer silently (only show install progress). --- AppTray.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/AppTray.cs b/AppTray.cs index e150d8c..4eaa64e 100644 --- a/AppTray.cs +++ b/AppTray.cs @@ -200,6 +200,7 @@ private void ApplicationExited(object sender, EventArgs e) { StartInfo = new ProcessStartInfo() { + Arguments = "/SILENT", FileName = _installerPath, WindowStyle = ProcessWindowStyle.Hidden, CreateNoWindow = true,