processstartinfo

C# Problem with ProcessStartInfo

Hi. I am using a ProcessStartInfo to patch a file with a text file like this (through cmd.exe): app.exe temp.txt patch.ips I wrote this code: ProcessStartInfo P = new ProcessStartInfo("app.exe"); P.Arguments = "temp.txt " + _patchpath; P.CreateNoWindow = true; P.UseShellExecute = false; P.RedirectStandardOutput = true; Proce...