C# Language
System.Management.Automation
Sök…
Anmärkningar
System.Management.Automation- namnområdet är root-namnområdet för Windows PowerShell.
System.Management.Automation är ett tilläggsbibliotek från Microsoft och det kan läggas till Visual Studio-projekt via NuGet-pakethanterare eller pakethanterarkonsol.
PM> Install-Package System.Management.Automation
Anropa enkel synkron pipeline
Få aktuellt datum och tid.
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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow