I have this:
Process process = new Process();
string VLCPath = ConfigurationManager.AppSettings["VLCPath"];
process.StartInfo.FileName = VLCPath;
process.StartInfo.WindowStyle = ProcessWindowStyle.Maximized;
process.Start();
But it wont start vlc maximized, what am I doing wrong? It keeps starting vlc in the state that I closed it the last time..