37

I would like to get the list of versions of a package. What is the command line for this?

It would be also nice to search in versions, for example: all the versions that are higher or lower than a specific version.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Boris Modylevsky
  • 3,029
  • 1
  • 26
  • 42

2 Answers2

50

You just need to add the --all to the end of your request. You can also add -v for verbose output.

Choco list packagename --all

ferventcoder
  • 11,952
  • 3
  • 57
  • 90
18
choco list -e <package> -a

-e, --exact

Only return packages with this exact name.

choco list --by-id-only [package] -a

--by-id-only

Only return packages where the id contains the search filter.

softwarevamp
  • 827
  • 10
  • 14