using System; using System.Diagnostics; using System.ComponentModel; class MyProcess { static void Main() { ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe"); startInfo.WindowStyle = ProcessWindowStyle.Minimized; Process.Start(startInfo); startInfo.Arguments = "www.java2s.com"; Process.Start(startInfo); } }