■ chocolatey를 설치하는 방법을 보여준다.
▶ cmd.exe를 사용하는 경우
1 2 3 |
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" |
※ 관리자 권한으로 실행한다.
▶ PowerShell을 사용하는 경우
1 2 3 |
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) |
※ 관리자 권한으로 실행한다.