반응형
- 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 |
반응형
'OS > Windows' 카테고리의 다른 글
[ Windows ] PowerShell vim 설치 (0) | 2023.03.12 |
---|---|
[ Windows ] Windows 자동 업데이트 끄기 / Windows Auto Update Off (0) | 2023.02.08 |