«processstartinfo» etiketlenmiş sorular

22
ProcessStartInfo “WaitForExit” üzerinde asılı mı kalıyor? Neden?
Takip koduna sahibim: info = new System.Diagnostics.ProcessStartInfo("TheProgram.exe", String.Join(" ", args)); info.CreateNoWindow = true; info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; info.RedirectStandardOutput = true; info.UseShellExecute = false; System.Diagnostics.Process p = System.Diagnostics.Process.Start(info); p.WaitForExit(); Console.WriteLine(p.StandardOutput.ReadToEnd()); //need the StandardOutput contents Başladığım süreçten elde edilen çıktının 7MB uzunluğunda olduğunu biliyorum. Windows konsolunda çalıştırmak iyi çalışıyor. Maalesef programlı olarak bu …

12
Toplu İş Dosyasını C # ile Yürütme
C # bir toplu iş dosyası yürütmek çalışıyorum, ama bunu yaparken herhangi bir şans almıyorum. İnternette bunu yaparken birden fazla örnek buldum, ama benim için çalışmıyor. public void ExecuteCommand(string command) { int ExitCode; ProcessStartInfo ProcessInfo; Process Process; ProcessInfo = new ProcessStartInfo("cmd.exe", "/c " + command); ProcessInfo.CreateNoWindow = true; ProcessInfo.UseShellExecute = …
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.