using System.Diagnostics; namespace DiscordChatExporter.Gui.Internal { internal static class ProcessEx { public static void StartShellExecute(string path) { var startInfo = new ProcessStartInfo(path) { UseShellExecute = true }; using (Process.Start(startInfo)) { } } } }