|
たまたま遊びで作ったコードがあったんで載せます(いいのかな・・・?)。 動作保障は一切できませんが。。。
string command = @"c:\windows\system32\ipconfig.exe";
Process p = new Process(); p.StartInfo.FileName = command; // 実行するファイル p.StartInfo.CreateNoWindow = true; // コンソールを開かない p.StartInfo.UseShellExecute = false; // シェル機能を使用しない p.StartInfo.Arguments = "/all"; p.StartInfo.RedirectStandardOutput = true; // 標準出力をリダイレクト p.Start(); // アプリの実行開始 string output = p.StandardOutput.ReadToEnd(); // 標準出力の読み取り
|