Chocolatey is a package manager for Windows. It is similar to apt, yum, and other package managers.
Install
Open a powershell as administrator and run the following command:
1
| @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "[System.Net.ServicePointManager]::SecurityProtocol = 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
|
Before you can use Chocolatey, you need to restart your shell.
Usage
check available packages
install a package
1
| choco install <package>
|
uninstall a package
1
| choco uninstall <package>
|
Chocolatey