Ga naar inhoud

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>