Wednesday, January 04, 2023

Azure Series : Installation - Chocolatey Package Manager

Install Chocolatey Package Manager


What is Chocolatey? 

Chocolatey Official Installation Instructions 

Summary of Installation Steps

  1. RunAsAdministrator - Windows Powershell
  2. From the Powershell prompt install chocolatey using the following command:
    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'))
  3. If no errors occurred during installation, you can verify Chocolatey is installed using the following command:
    choco -?

No comments: