윈도우 PowerShell 버전 확인

Jmnote (토론 | 기여)님의 2020년 5월 30일 (토) 01:16 판 (→‎방법 2: host)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
Check Version of PowerShell
Determine installed PowerShell version
파워쉘 버전 확인

1 방법 1: $Host.Version[ | ]

PS C:\Users\jmnote> $Host.Version

Major  Minor  Build  Revision
-----  -----  -----  --------
5      1      18362  752

2 방법 2: host[ | ]

PS C:\Users\jmnote> host | findstr Version
Version          : 5.1.18362.752

3 방법 3: $PSVersionTable[ | ]

PS C:\Users\jmnote> $PSVersionTable.PSVersion

Major  Minor  Build  Revision
-----  -----  -----  --------
5      1      18362  752

4 같이 보기[ | ]

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}