inblog logo
|
{CODE-RYU};
    #install

    초코(Chocolety) 설치하기

    Dec 12, 2023
    초코(Chocolety) 설치하기
    Contents
    1. 관리자모드로 PowerShell 열기2. 초코 홈페이지 문서 확인 및 설치3. 초코 설치 확인
     

    1. 관리자모드로 PowerShell 열기

     
    notion image
     

    2. 초코 홈페이지 문서 확인 및 설치

    Installing Chocolatey
    Chocolatey is software management automation for Windows that wraps installers, executables, zips, and scripts into compiled packages. Chocolatey integrates w/SCCM, Puppet, Chef, etc. Chocolatey is trusted by businesses to manage software deployments.
    Installing Chocolatey
    https://chocolatey.org/install
    Installing Chocolatey
     
    윈도우 현재 정책 확인
    Get-ExecutionPolicy
    If it returns Restricted 제한된 상황이라면 아래와 같이 명령어 실행
    Set-ExecutionPolicy AllSigned
     
    윈도우 현재 정책 다시 확인
    Get-ExecutionPolicy
     
    notion image
    설치하기
    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'))
     
     
    💡
    동시에 여러명이 요청하면 too many request 오류 날 수 있으니 삭제 후 나중에 다시 시도하자 !
     
    notion image
    해당 폴더에서 삭제
     

    3. 초코 설치 확인

    choc --version
     
    notion image
    Share article

    {CODE-RYU};

    RSS·Powered by Inblog