OS 기술/Windows

PowerShell 버전 업그레이드

DongT 2023. 7. 5. 17:27
728x90
반응형

Azure 클라우드를 이용하면서 azcli 를 사용하게되면 PowerShell 버전을 7까지 업그레이드 해야할 필요가 있음

 

(참고)

업그레이드 전 PowerShell 버전 확인

PowerShell Version5

업그레이드 후 PowerShell 버전 확인

PowerShell Version7


인터넷이 되는 환경에서 업그레이드 하는 방법

1) 기존 사용하던 PowerShell 커맨드에 아래 명령어 입력

iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI"

자동으로 설치파일 다운로드 후 실행됨

2) 업그레이드 설치 진행

특별한것 없이 Next만 진행해도 된다

3) 업그레이드 완료 후 PowerShell 7 실행

기존의 PowerShell과는 다른 실행 파일로 존재한다

 

 


만약 인터넷이 되지 않는 환경에서 업그레이드 설치할 때

 

1) 설치파일 직접 다운로드 

   다운로드 URL :

https://learn.microsoft.com/ko-kr/powershell/scripting/install/installing-powershell-on-windows?view=powershell-7.3

 

Windows에 PowerShell 설치 - PowerShell

Windows에서 PowerShell을 설치하는 방법에 대한 정보

learn.microsoft.com

사용자 환경에 맞는 설치파일이 준비되있음

 

2) 설치파일 실행

 

3) 이후는 위 과정과 똑같다

 

728x90