This is the setup in my C# code: ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.WindowStyle = ProcessWindowStyle.Hidden; startInfo.FileName = "\"" + "C:\\Program Files (x86)\\VideoLan\\VLC\\vlc.exe" + "\""; startInfo.CreateNoWindow = true; star...