Windows PowerShell 참조
Windows PowerShell은 관리 자동화를 위해 설계된 Microsoft .NET Framework 연결 환경입니다. Windows PowerShell은 명령을 빌드하고, 솔루션을 구성하고, 그래픽 사용자 인터페이스 기반 관리 도구를 만드는 새로운 방법을 제공합니다.
Windows PowerShell을 사용하면 시스템 관리자가 직접 또는 스크립트를 통해 명령을 실행하여 시스템 리소스 관리를 자동화할 수 있습니다.
개발자 대상 그룹
Windows PowerShell SDK(소프트웨어 개발 키트)는 Windows PowerShell에서 제공하는 API에 대한 참조 정보가 필요한 명령 개발자를 위해 작성되었습니다. 명령 개발자는 Windows PowerShell을 사용하여 Windows PowerShell에서 수행할 수 있는 작업을 확장하는 명령과 공급자를 모두 만듭니다.
Windows PowerShell 리소스
Windows PowerShell SDK 외에도 다음 리소스는 자세한 정보를 제공합니다.
Windows PowerShell 시작에서는 언어, cmdlet, 공급자 및 개체 사용과 같은 Windows PowerShell을 소개합니다.
Windows PowerShell 모듈 Windows PowerShell 모듈을 사용하여 Windows PowerShell 솔루션을 패키지하고 배포해야 하는 관리자, 스크립트 개발자 및 cmdlet 개발자를 위한 정보 및 예제를 제공합니다.
Windows PowerShell Cmdlet cmdlet을 디자인하는 프로그램 관리자와 cmdlet 코드를 구현하는 개발자를 위한 정보 및 코드 예제를 제공합니다.
Windows PowerShell 팀 블로그 다른 Windows PowerShell 사용자로부터 학습하고 공동 작업하는 데 가장 적합한 리소스입니다. Windows PowerShell 팀 블로그를 읽은 다음 Windows PowerShell 사용자 포럼(microsoft.public.windows.powershell)에 참가합니다. Windows Live Search를 사용하여 다른 Windows PowerShell 블로그 및 리소스를 찾습니다. 그런 다음 전문 지식을 개발할 때 자유롭게 아이디어를 기여할 수 있습니다.
PowerShell 모듈 브라우저 명령줄 도움말 항목의 최신 버전을 제공합니다.
클래스 라이브러리
System.Management.Automation 이 네임스페이스는 Windows PowerShell의 루트 네임스페이스입니다. 여기에는 사용자 지정 cmdlet을 구현하는 데 필요한 클래스, 열거형 및 인터페이스가 포함됩니다. 특히 System.Management.Automation.Cmdlet 클래스는 모든 cmdlet 클래스를 파생해야 하는 기본 클래스입니다. cmdlet에 대한 자세한 내용은 다음을 참조하세요.
System.Management.Automation.Provider 이 네임스페이스에는 Windows PowerShell 공급자를 구현하는 데 필요한 클래스, 열거형 및 인터페이스가 포함됩니다. 특히 System.Management.Automation.Provider.CmdletProvider 클래스는 모든 Windows PowerShell 공급자 클래스를 파생해야 하는 기본 클래스입니다.
Microsoft.PowerShell.Commands 이 네임스페이스에는 Windows PowerShell에서 구현한 cmdlet 및 공급자에 대한 클래스가 포함되어 있습니다. 마찬가지로 YourName 만드는 것이 좋습니다. 구현하는 cmdlet에 대한 명령 네임스페이스입니다.
System.Management.Automation.Host 이 네임스페이스에는 cmdlet이 사용자와 Windows PowerShell 간의 상호 작용을 정의하는 데 사용하는 클래스, 열거형 및 인터페이스가 포함됩니다.
System.Management.Automation.Internal 이 네임스페이스는 다른 네임스페이스 클래스에서 사용하는 기본 클래스를 포함합니다. 예를 들어 System.Management.Automation.Internal.CmdletMetadataAttribute 클래스는 System.Management.Automation.CmdletAttribute 클래스의 기본 클래스입니다.
System.Management.Automation.Runspaces 이 네임스페이스에는 Windows PowerShell Runspace를 만드는 데 사용되는 클래스, 열거형 및 인터페이스가 포함됩니다. 이 컨텍스트에서 Windows PowerShell Runspace는 하나 이상의 Windows PowerShell 파이프라인이 cmdlet을 호출하는 컨텍스트입니다. 즉, cmdlet은 Windows PowerShell Runspace의 컨텍스트 내에서 작동합니다. Windows PowerShell runspaces에 대한 자세한 내용은 windows PowerShell Runspaces 참조하세요.
PowerShell