본문 바로가기
OS/Windows

[Windows] Chocolatey

by llHoYall 2020. 8. 30.

Chocolatey is the package manager for windows.

I've been using it for several years.

It was awesome, so I love it.

Installation

Open the shell with admin mode.

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

Usage

Show help menu

$ choco -?
$ choco --help (-h)

Upgrade Packages

Self upgrade

$ choco upgrade chocolatey

Upgrade all installed packages

$ choco upgrade all

Show available packages list

$ choco list

Show installed packages list

$ choco list --local-only (-l)

Install specified packages

$ choco install <packages>

Uninstall specified packages

$ choco uninstall <packages>

'OS > Windows' 카테고리의 다른 글

[Windows] Hibernate 켜기  (0) 2022.03.08
[PowerShell] Get Elapsed Time using PowerShell Script  (0) 2021.12.21
[Windows] Microsoft PowerToys  (0) 2021.07.15
[Windows] Getting Started with Windows Terminal  (0) 2020.12.24

댓글