■ Process 클래스를 사용해 ipconfig 명령을 실행해서 결과를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
using System; using System.Diagnostics; ProcessStartInfo processStartInfo = new ProcessStartInfo(); processStartInfo.FileName = @"c:\windows\system32\ipconfig.exe"; processStartInfo.Arguments = "/all"; processStartInfo.CreateNoWindow = true; processStartInfo.UseShellExecute = false; processStartInfo.RedirectStandardOutput = true; Process process = Process.Start(processStartInfo); string result = process.StandardOutput.ReadToEnd(); result = result.Replace("\r\r\n", "\n"); Console.WriteLine(result); |