수색…


비고

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