
chocolatey
This repository is a collection of chocolatey packages that I’ve created.
Prerequisites
Install Chocolatey using your preferred “administrative” shell application
cmd
@"%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"
pwsh
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
Usage
choco -?
https://docs.chocolatey.org/en-us/choco/commands/install/
choco install <package_name> [options]
https://docs.chocolatey.org/en-us/choco/commands/uninstall/
choco uninstall <package_name> [options]
https://docs.chocolatey.org/en-us/choco/commands/upgrade/
choco upgrade <package_name|all> [options]
Example
choco install firefox -y
