How to Install Chocolatey on Windows PowerShell

0 min read 98 words

Chocolatey is a software management automation for Windows that wraps installers, executables, zips, and scripts into compiled packages

chocolatey.org

How to Install Chocolatey in PowerShell

Open PowerShell (Run PowerShell in Administrator mode) and paste the following script:

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'))

This will install Chocolatey, and get you to the point of being able to install packages.

Install some Packages with Chocolatey

Some example packages to install:

PackageCommand
Visual Studio Codecinst vscode -y
Google Chromecinst googlechrome -y
Gitcinst git -y
Git TFScinst gittfs -y
Andrew
Andrew

Andrew is a visionary software engineer and DevOps expert with a proven track record of delivering cutting-edge solutions that drive innovation at Ataiva.com. As a leader on numerous high-profile projects, Andrew brings his exceptional technical expertise and collaborative leadership skills to the table, fostering a culture of agility and excellence within the team. With a passion for architecting scalable systems, automating workflows, and empowering teams, Andrew is a sought-after authority in the field of software development and DevOps.

Tags

Recent Posts