Scoop
Scoop
Chocolatey is a package manager for Windows. It is similar to apt, yum, and other package managers.
Install
Open a powershell (no admin) and run the following command:
1
2
3
4
5
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser # Optional: Needed to run a remote script the first time
irm get.scoop.sh | iex
scoop install git
scoop bucket add extras
scoop bucket add versions
Usage
check available packages
1
scoop search <package>
install a package
1
scoop install <package>
uninstall a package
1
scoop uninstall <package>
This post is licensed under CC BY 4.0 by the author.