C# Language
System.Management.Automation
サーチ…
備考
System.Management.Automation名前空間は、Windows PowerShellのルート名前空間です。
System.Management.AutomationはMicrosoftの拡張ライブラリであり、NuGetパッケージマネージャまたはパッケージマネージャコンソールからVisual Studioプロジェクトに追加できます。
PM> Install-Package System.Management.Automation
シンプルな同期パイプラインを呼び出す
現在の日付と時刻を取得します。
public class Program
{
static void Main()
{
// create empty pipeline
PowerShell ps = PowerShell.Create();
// add command
ps.AddCommand("Get-Date");
// run command(s)
Console.WriteLine("Date: {0}", ps.Invoke().First());
Console.ReadLine();
}
}
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow