@connorads favourite Chocolatey packages 🍫
Install and/or update all your favourite Windows software using a few commands
If you already have Chocolatey installed
choco install packages.config -y
To list all installed packages that can be upgraded
choco upgrade all --noop
To upgrade all installed packages
choco upgrade all -y
Here's a quick way to install Chocolatey on Windows 10
-
Open PowerShell (Admin)
win + x , then press a -
From PowerShell, open Command Prompt (Admin)
cmd
-
Install Chocolatey
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
-
(Optional) Refresh environment variables for current session
refreshenv