.NET Framework
System.Diagnostics
サーチ…
ストップウォッチ
この例では、 Stopwatch
を使用してコードブロックをベンチマークする方法を示します。
using System;
using System.Diagnostics;
public class Benchmark : IDisposable
{
private Stopwatch sw;
public Benchmark()
{
sw = Stopwatch.StartNew();
}
public void Dispose()
{
sw.Stop();
Console.WriteLine(sw.Elapsed);
}
}
public class Program
{
public static void Main()
{
using (var bench = new Benchmark())
{
Console.WriteLine("Hello World");
}
}
}
シェルコマンドを実行する
string strCmdText = "/C copy /b Image1.jpg + Archive.rar Image2.jpg";
System.Diagnostics.Process.Start("CMD.exe",strCmdText);
これは、cmdウィンドウを非表示にします。
System.Diagnostics.Process process = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
startInfo.FileName = "cmd.exe";
startInfo.Arguments = "/C copy /b Image1.jpg + Archive.rar Image2.jpg";
process.StartInfo = startInfo;
process.Start();
コマンドをCMDに送り、出力を受け取る
このメソッドを使用すると、 Cmd.exe
command
を送信し、標準出力(標準エラーも含む)を文字列として返します。
private static string SendCommand(string command)
{
var cmdOut = string.Empty;
var startInfo = new ProcessStartInfo("cmd", command)
{
WorkingDirectory = @"C:\Windows\System32", // Directory to make the call from
WindowStyle = ProcessWindowStyle.Hidden, // Hide the window
UseShellExecute = false, // Do not use the OS shell to start the process
CreateNoWindow = true, // Start the process in a new window
RedirectStandardOutput = true, // This is required to get STDOUT
RedirectStandardError = true // This is required to get STDERR
};
var p = new Process {StartInfo = startInfo};
p.Start();
p.OutputDataReceived += (x, y) => cmdOut += y.Data;
p.ErrorDataReceived += (x, y) => cmdOut += y.Data;
p.BeginOutputReadLine();
p.BeginErrorReadLine();
p.WaitForExit();
return cmdOut;
}
使用法
var servername = "SVR-01.domain.co.za";
var currentUsers = SendCommand($"/C QUERY USER /SERVER:{servername}")
出力
文字列currentUsers = "USERNAMEセッションID ID状態IDLE時間ログオン時間Joe.Bloggs ica-cgp#0 2アクティブ24692 + 13:29 25/07/2016 07:50 Jim.McFlannegan ica-cgp#1 3アクティブ25/07 / 2016 08:33 Andy.McAnderson ica-cgp#2 4アクティブ25/07/2016 08:54 John.Smith ica-cgp#4 5アクティブ14 25/07/2016 08:57 Bob.Bobbington ica-cgp#5 6 Active 24692 + 13:29 25/07/2016 09:05 Tim.Tom ica-cgp#6 7アクティブ25/07/2016 09:08 Bob.Joges ica-cgp#7 8 Active 24692 + 13:29 25 / 07/2016 09:13 "
場合によっては、問題のサーバーへのアクセスが特定のユーザーに制限されることがあります。このユーザーのログイン資格情報を持っている場合は、この方法でクエリを送信することができます。
private static string SendCommand(string command)
{
var cmdOut = string.Empty;
var startInfo = new ProcessStartInfo("cmd", command)
{
WorkingDirectory = @"C:\Windows\System32",
WindowStyle = ProcessWindowStyle.Hidden, // This does not actually work in conjunction with "runas" - the console window will still appear!
UseShellExecute = false,
CreateNoWindow = true,
RedirectStandardOutput = true,
RedirectStandardError = true,
Verb = "runas",
Domain = "doman1.co.za",
UserName = "administrator",
Password = GetPassword()
};
var p = new Process {StartInfo = startInfo};
p.Start();
p.OutputDataReceived += (x, y) => cmdOut += y.Data;
p.ErrorDataReceived += (x, y) => cmdOut += y.Data;
p.BeginOutputReadLine();
p.BeginErrorReadLine();
p.WaitForExit();
return cmdOut;
}
パスワードの取得:
static SecureString GetPassword()
{
var plainText = "password123";
var ss = new SecureString();
foreach (char c in plainText)
{
ss.AppendChar(c);
}
return ss;
}
ノート
上記の両方のメソッドは、 OutputDataReceived
とErrorDataReceived
両方が同じ変数cmdOut
追加されるため、STDOUTとSTDERRの連結を返します。