C# Language
System.Management.Automation
Suche…
Bemerkungen
Der System.Management.Automation- Namespace ist der Stammnamespace für Windows PowerShell.
System.Management.Automation ist eine Erweiterungsbibliothek von Microsoft. Sie kann Visual Studio-Projekten über den NuGet-Paket-Manager oder die Paket-Manager-Konsole hinzugefügt werden.
PM> Install-Package System.Management.Automation
Einfache synchrone Pipeline aufrufen
Holen Sie sich das aktuelle Datum und die aktuelle Uhrzeit.
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
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow