윈도우 PowerShell 버전 확인

Jmnote (토론 | 기여)님의 2015년 3월 30일 (월) 16:05 판 (→‎방법)
Determine installed PowerShell version
파워쉘 버전 확인

1 방법

  • CMD
C:\Users\jmnote>powershell "host | findstr ^Version"
Version          : 2.0
  • PowerShell
PS C:\Users\jmnote> host | findstr ^Version
Version          : 2.0
→ 2.0
  • host 명령어 대신 $host, get-host를 써도 됨

2 같이 보기

3 참고 자료