21

I installed gittfs using

cinst gittfs

How do I now remove the gittfs package?

8DH
  • 1,712
  • 23
  • 32
Ben Aston
  • 45,997
  • 54
  • 176
  • 303

2 Answers2

34

Use

cuninst packagename

See Uninstall Command for details.

ferventcoder
  • 10,640
  • 2
  • 51
  • 83
xuhdev
  • 6,553
  • 2
  • 32
  • 58
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
  • 28,342
  • 21
  • 95
  • 123
Matt
  • 4,792
  • 4
  • 30
  • 53
  • 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