ProcessStartInfo psi = new ProcessStartInfo(); psi.FileName = @"C:\Program Files\ProgramFolder\Program.exe"; psi.Arguments = @"Parameter1 Parameter2 파라미터3"; Process.Start(psi);