826 B
826 B
Chocolatey
Chocolatey is a machine-level, command-line package manager and installer for Windows software.
Project Homepage: Chocolatey Homepage
Installation
- Check the Execution Policy
Run Get-ExecutionPolicy
. If it returns Restricted
, then run Set-ExecutionPolicy AllSigned
or Set-ExecutionPolicy Bypass -Scope Process
.
- 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'))
- Check if you install chocolatey
choco -?
Install software package
choco install <package>