Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

How to list installed Chocolatey packages?

Writer Andrew Henderson

Probably a simple question, but how do I get Chocolatey to list which packages are currently installed on my system?

When googling, I end up at the question below. It is related but slightly different, and it doesn't have a simple answer to my question.

Is there a way to list chocolatey packages with their install directory

2 Answers

choco list --local-only

Or:

clist -l

Source:

This list all packages that are currently installed on your local machine, with version numbers.

λ choco list --local-only
Chocolatey v0.10.8
7zip.commandline 16.02.0.20170209
(...)
41 packages installed.
2

Another alternative would be to install the official Chocolatey GUI application. This includes a tab which shows all the currently installed applications in your machine.

To install it, simply do:

choco install chocolateygui

The GitHub Repository for Chocolatey GUI can be found here:

And a screenshot of the UI can be seen here:

Chocolatey GUI Application Loaded

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy