21

I installed gittfs using

cinst gittfs

How do I now remove the gittfs package?

8DH
  • 2,022
  • 23
  • 36
Ben Aston
  • 53,718
  • 65
  • 205
  • 331

2 Answers2

34

Use

cuninst packagename

See Uninstall Command for details.

ferventcoder
  • 11,952
  • 3
  • 57
  • 90
xuhdev
  • 8,018
  • 2
  • 41
  • 69
15

UPDATE: as per @ferventcoder's comment, Chocolately has added support for uninstalling packages since this question was first asked and answered.

The syntax is chocolatey uninstall packageName or just cuninst packageName.

You can optionally uninstall a specific version:

cuninst packageName -version 1.0.1234

See Rob's link for the latest, including known limitations: https://chocolatey.org/docs/commands-uninstall

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Matt
  • 5,052
  • 4
  • 36
  • 54
  • Chocolatey now has native support for uninstall - see https://github.com/chocolatey/chocolatey/wiki/CommandsUninstall – ferventcoder Jul 13 '12 at 04:10
  • 16
    It's the most frustrating thing that Chocolatey allows authors to submit packages with no uninstall procedure defined. – Conrad.Dean Jun 03 '13 at 18:43
  • Choco does have autouninstaller since March 2015 and it's pretty good at automatically uninstalling applications now without an uninstall script. – ferventcoder Nov 08 '16 at 23:14