From 3c25a987fd59a11d1a0124700d143f768cbe47c9 Mon Sep 17 00:00:00 2001 From: Vest Date: Thu, 16 Dec 2021 19:02:25 +0100 Subject: [PATCH] Fix the issue #2087 Signed-off-by: Vest --- mRemoteNG/App/Shutdown.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mRemoteNG/App/Shutdown.cs b/mRemoteNG/App/Shutdown.cs index e69c557e..2067cbdb 100644 --- a/mRemoteNG/App/Shutdown.cs +++ b/mRemoteNG/App/Shutdown.cs @@ -120,7 +120,7 @@ namespace mRemoteNG.App private static void RunUpdateFile() { if (UpdatePending) - Process.Start(_updateFilePath); + Process.Start(new ProcessStartInfo(_updateFilePath) { UseShellExecute = true }); } } } \ No newline at end of file