PowerShell

PowerShell 버전 확인

delmaster 2016. 2. 24. 18:00

Powershell의 Version 확인은 아래의 명령어를 통해서 가능합니다. 파워쉘은 기본적으로 v1.0이라는 폴더에 설치되기 때문에 폴더 이름을 통해 파워쉘 버전을 알 수는 없습니다.

버전은 '$host', '$PSVersionTable' 두개 명령어 모두 확인 가능합니다.

 

파워쉘이 설치되어 있는 경로

C:\Windows\System32\WindowsPowerShell\v1.0

 

버전 확인 - 파워쉘에서 실행

$host

 

Powershell Version

 

 

$PSVersionTable

파워쉘 버전

 

'PowerShell' 카테고리의 다른 글

PowerShell 변수 사용  (0) 2016.02.29
PowerShell 리디렉션 출력  (0) 2016.02.26
PowerShell 필터링 기능  (0) 2016.02.26
PowerShell 비교 연산자  (0) 2016.02.25
PowerShell 명령어 실행결과확인 또는 실행승인  (0) 2016.02.25
PowerShell 폴더와 파일 생성  (0) 2016.02.25
PowerShell Alias  (0) 2016.02.24
PowerShell 도움말 업데이트  (0) 2016.02.24