[ Windows ] PowerShell Chocolatey 설치
OS/Windows

[ Windows ] PowerShell Chocolatey 설치

반응형
  • PowerShell Chocolatey 설치
Get-ExecutionPolicy

PowerShell 실행 정책 확인 →

Set-ExecutionPolicy AllSigned

Restricted(스크립트 비허용)라면 AllSigned로 설정 →

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))

Chocolatey 설치

choco -V

Chocolatey 버전 확인

 

참고
https://learn.microsoft.com/ko-kr/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7.3
반응형