Chocolatey

| | |

What is Chocolatey

Chocolatey NuGet is a Machine Package Manager, somewhat like apt-get (UNIX), but built with Windows in mind.

How to Install

  1. Open PowerShell ISE as admin (typical 64-bit path %windir%\sysWOW64\WindowsPowerShell\v1.0\PowerShell_ISE.exe)
  2. Set Execution Policy Permissions
  3. Run the installation script from https://chocolatey.org/install.ps1
get-packageprovider -name chocolatey
Stop-Process -processName: powershell* -force # This will restart PowerShell to make this work.
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
taskkill /im powershell* /f
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
Stop-Process -processName: powershell* -force # This will restart PowerShell to make this work.
Originally Posted on October 20, 2015
Last Updated on August 30, 2016
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.