What is Chocolatey
Chocolatey NuGet is a Machine Package Manager, somewhat like apt-get (UNIX), but built with Windows in mind.
How to Install
- Open PowerShell ISE as admin (typical 64-bit path %windir%\sysWOW64\WindowsPowerShell\v1.0\PowerShell_ISE.exe)
- Set Execution Policy Permissions
- Run the installation script from https://chocolatey.org/install.ps1
Preferred Install Optionget-packageprovider -name chocolatey
Stop-Process -processName: powershell* -force
|
Command Prompt - Install@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
|
PowerShell - Installiex (( new-object net.webclient).DownloadString( 'https://chocolatey.org/install.ps1' ))
Stop-Process -processName : powershell* -force
|
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.
Related