C# Language
System.Management.Automation
Zoeken…
Opmerkingen
De naamruimte System.Management.Automation is de hoofdnaamruimte voor Windows PowerShell.
System.Management.Automation is een uitbreidingsbibliotheek van Microsoft en kan worden toegevoegd aan Visual Studio-projecten via NuGet pakketbeheer of pakketbeheerconsole.
PM> Install-Package System.Management.Automation
Roep eenvoudige synchrone pijplijn op
Download de huidige datum en tijd.
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
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow