Skip to content

Instantly share code, notes, and snippets.

@AzimsTech
Last active March 18, 2021 14:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AzimsTech/e9bf9abf45549ec73eb4ae9b63697e6c to your computer and use it in GitHub Desktop.
Save AzimsTech/e9bf9abf45549ec73eb4ae9b63697e6c to your computer and use it in GitHub Desktop.
Chocolatey Tips & Tricks

Chocolatey Tips & Tricks

To install applications without confirmation

choco feature enable -n allowGlobalConfirmation

To find a package in command line use:

clist googlechrome

To install a package:

cinst googlechrome

To install multiple packages:

cinst googlechrome 7zip mpcbe

To ignore dependencies during install

cinst paint.net -i

To uninstall a package:

cuninst googlechrome

To update all installed packages:

cup all

To list all installed packages:

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