Chocolatey

From wikinotes

Chocolatey is a community-managed package manager for windows.

Documentation

homepage https://chocolatey.org/

Locations

C:\programdata\ most programs install here
C:\Usrs\will\AppData\Local\NuGet\Cache chocolatey recipes

Install

## Paste the following in cmd:
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin

## You will have to add chocolatey to your %PATH% variable if you want to be able to run it outside of this session.
SET PATH=%PATH%;%systemdrive%\chocolatey\bin

Usage

choco list -l           # list installed packages
choco update

choco install -y <pkg>  # install package, w/o confirmations
choco search <pkg>      # search packages
choco upgrade <pkg>     # upgrade target package
choco upgrade all -y    # upgrade all installed packages