다음을 통해 공유


PowerShell_ise

Windows PowerShell ISE(통합 스크립팅 환경)는 그래픽 지원 환경에서 스크립트 및 모듈을 읽고, 쓰고, 실행하고, 디버그하고, 테스트할 수 있는 그래픽 호스트 애플리케이션입니다. IntelliSense, Show-Command, 코드 조각, 탭 완성, 구문 색상 지정, 시각적 디버깅 및 상황에 맞는 도움말과 같은 주요 기능은 풍부한 스크립팅 환경을 제공합니다.

Using PowerShell.exe

PowerShell_ISE.exe 도구는 Windows PowerShell ISE 세션을 시작합니다. PowerShell_ISE.exe사용하는 경우 선택적 매개 변수를 사용하여 Windows PowerShell ISE에서 파일을 열거나 프로필 없이 또는 다중 스레드 아파트를 사용하여 Windows PowerShell ISE 세션을 시작할 수 있습니다.

  • 명령 프롬프트 창, Windows PowerShell 또는 시작 메뉴에서 Windows PowerShell ISE 세션을 시작하려면 다음을 입력합니다.

    PowerShell_Ise.exe
    
  • 스크립트(.ps1), 스크립트 모듈(.psm1), 모듈 매니페스트(.psd1), XML 파일 또는 기타 지원되는 파일을 Windows PowerShell ISE에서 열려면 다음과 같이 입력합니다.

    PowerShell_Ise.exe <filepath>
    

    Windows PowerShell 3.0에서는 다음과 같이 선택적 File 매개 변수를 사용할 수 있습니다.

    PowerShell_Ise.exe -file <filepath>
    
  • Windows PowerShell 프로필 없이 Windows PowerShell ISE 세션을 시작하려면 NoProfile 매개 변수를 사용합니다. ( NoProfile 매개 변수는 Windows PowerShell 3.0에 도입되었습니다.) 다음을 입력합니다.

    PowerShell_Ise.exe -NoProfile
    
  • PowerShell_ISE.exe 도움말 파일을 보려면 다음과 같이 입력합니다.

    PowerShell_Ise.exe -help
    PowerShell_Ise.exe -?
    PowerShell_Ise.exe /?
    

Remarks

  • PowerShell_ISE.exe 명령줄 매개 변수의 전체 목록은 about_PowerShell_Ise.Exe를 참조하세요.

  • Windows PowerShell을 시작하는 다른 방법에 대한 자세한 내용은 Windows PowerShell 시작하기를 참조하세요.

  • Windows PowerShell은 Windows Server 운영 체제의 Server Core 설치 옵션에서 실행됩니다. 그러나 Windows PowerShell ISE에는 그래픽 사용자 인터페이스가 필요하기 때문에 Server Core 설치에서는 실행되지 않습니다.