Applications/windows/chocolatey.md
2024-04-03 22:04:13 +02:00

826 B

Chocolatey

Chocolatey is a machine-level, command-line package manager and installer for Windows software.

Project Homepage: Chocolatey Homepage


Installation

  1. Check the Execution Policy

Run Get-ExecutionPolicy. If it returns Restricted, then run Set-ExecutionPolicy AllSigned or Set-ExecutionPolicy Bypass -Scope Process.

  1. Install Chocolatey
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'))
  1. Check if you install chocolatey
choco -?

Install software package

choco install <package>