Chocolatey – Windows Package Manager FTW

Written by James McDonald

January 24, 2022

Install chocolatey from an elevated Powershell command prompt following the instructions at https://chocolatey.org/install

From then on you can install many of your favourite packages with eaze.

choco install nodejs --version=14.15.0
# pin the version so you don't auto upgrade after install
choco pin add -n nodejs

# or if you have multiple versions
choco pin add --name="'nodejs'" --version="'14.15.0'"

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Robocopy exclude Directories

Just trying to copy everything except a couple of directories from a drive to my NAS This is the secret incantation of...