From 681afaadc6511a68967abbafd9c0f77229312788 Mon Sep 17 00:00:00 2001 From: RickDB Date: Thu, 29 Dec 2016 19:01:16 +0100 Subject: [PATCH] Fixed uninstall warning message. --- JMMServer/MainWindow.xaml.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/JMMServer/MainWindow.xaml.cs b/JMMServer/MainWindow.xaml.cs index 24bd31a0c..00b3fd1e9 100644 --- a/JMMServer/MainWindow.xaml.cs +++ b/JMMServer/MainWindow.xaml.cs @@ -425,10 +425,8 @@ void UninstallJMMServer() ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.FileName = jmmServerUninstallPath; startInfo.Arguments = " /SILENT"; - startInfo.CreateNoWindow = true; - Process p = Process.Start(startInfo); - p?.Start(); + Process.Start(startInfo); logger.Log(LogLevel.Info, "JMM Server successfully uninstalled"); }