Skip to content

Instantly share code, notes, and snippets.

@somecuitears
Last active March 27, 2017 10:23
Show Gist options
  • Save somecuitears/254957f11e458f9de2bf659301fc09c7 to your computer and use it in GitHub Desktop.
Save somecuitears/254957f11e458f9de2bf659301fc09c7 to your computer and use it in GitHub Desktop.
Package manager for windows

Installing Chocolatey

  1. Open Powershell in admin mode from start menu.
  2. Allow running sript on powershell using following code
Set-ExecutionPolicy RemoteSigned
  1. Type YES and press enter.
  2. Paste following code to begin installing Chocolatey
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
  1. Thats all :)

Updating Chocolatey

  1. Open Powershell in admin mode from start menu.
  2. Update Chocolatey using following code
choco upgrade chocolatey

Uninstalling Chocolatey

If u dont like chocolatey then manually delete following folder

  • If version 0.9.8.27+

    C:\Chocolatey

  • If version below 0.9.8.27

    C:\ProgramData\chocolatey

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment