Process myProcess = new Process();myProcess.StartInfo.FileName = "winword";myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Normal;myProcess.Start();