Powershell

Powershell 엔진 업그레이드

김모우 2020. 10. 15. 20:02
728x90
반응형

1. .NET 프레임 워크 최신 버전 설치

 

2. Powershell DSC 기능 사용을 위해 WinRM 설정

: 관리자 권한으로 파워쉘 실행

 

# Set-WSManQuickConfig

 

3. WMF 5.1 패키지 다운로드 후 압축 해제

: www.microsoft.com/en-us/download/details.aspx?id=54616

 

WMF 5.1

Windows Management Framework 5.1 includes updates to Windows PowerShell, Windows PowerShell Desired State Configuration (DSC), Windows Remote Management (WinRM), Windows Management Instrumentation (WMI). Release notes: https://go.microsoft.com/fwlink/?link

www.microsoft.com

 

4. 외부에서 스크립트 실행 가능하게끔 Execution Policy 변경

 

# Set-ExecutionPolicy RemoteSigned

 

5. Powershell 콘솔의 프롬프트를 압축 푼 위치로 이동 후 Install-WMF5.1.ps1 실행

 

# cd /압축 푼 위치
# Install-WMF5.1.ps1

 

6. 설치 종료 후 리부팅

 

7. 버전 업데이트 확인

 

# Get-Host |Select-Object Version
728x90
반응형

'Powershell' 카테고리의 다른 글

Get-WmiObject를 이용한 NIC 규격 구하기  (0) 2020.11.20
Findstr 사용법  (0) 2020.10.25
Powershell 개체  (0) 2020.10.15
자주 쓰는 성능 카운터 정리  (0) 2020.10.15
Linux에서 Powershell 사용하기  (0) 2020.10.15