Fix the issue #2087

Signed-off-by: Vest <Vest@users.noreply.github.com>
This commit is contained in:
Vest
2021-12-16 19:02:25 +01:00
parent 7cebc4ef42
commit 3c25a987fd

View File

@@ -120,7 +120,7 @@ namespace mRemoteNG.App
private static void RunUpdateFile()
{
if (UpdatePending)
Process.Start(_updateFilePath);
Process.Start(new ProcessStartInfo(_updateFilePath) { UseShellExecute = true });
}
}
}