Skip to content

Instantly share code, notes, and snippets.

@CallMarl
Last active April 2, 2020 07:12
Show Gist options
  • Save CallMarl/c5580f4cd11a3c30feee1ec11d36d56a to your computer and use it in GitHub Desktop.
Save CallMarl/c5580f4cd11a3c30feee1ec11d36d56a to your computer and use it in GitHub Desktop.
Powershell package manager
# Greate tools to work with on powershell
# Yo can download link: https://chocolatey.org/
# Be very carrefull about security from this package manager.
# Display the current installed package
choco list --local-only
# Update specifique package (run as administator)
choco update "package-name"
# Upgrade specifique package (run as administator)
choco upgrade "package-name"
# Uninstall specifique package (run as administator)
choco uninstall "package-name"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment