mirror of https://github.com/CrimsonTome/tldr.git
25 lines
595 B
Markdown
25 lines
595 B
Markdown
# choco uninstall
|
|
|
|
> Deinstalliere mit Chocolatey ein oder mehrere Pakete.
|
|
> Weitere Informationen: <https://chocolatey.org/docs/commands-uninstall>.
|
|
|
|
- Deinstalliere ein oder mehrere Pakete, deren Namen mit Leerzeichen getrennt sind:
|
|
|
|
`choco uninstall {{paket(e)}}`
|
|
|
|
- Deinstalliere eine bestimmte Version eines Paketes:
|
|
|
|
`choco uninstall {{paket}} --version {{version}}`
|
|
|
|
- Stimme allen Fragen automatisch zu:
|
|
|
|
`choco uninstall {{paket}} --yes`
|
|
|
|
- Deinstalliere auch alle Abhängigkeiten:
|
|
|
|
`choco uninstall {{paket}} --remove-dependencies`
|
|
|
|
- Deinstalliere alle Pakete:
|
|
|
|
`choco uninstall all`
|