Is there away to create a new process and not having windows give focus to the window when it is created.

Code:
Process myProcess = new Process();
myProcess.StartInfo.FileName = @"tempprogram.exe";
myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Minimized;
myProcess.Start();