choco-uninstall:tldr:818a7
choco-uninstall: Uninstall a specific version of a package.
$ choco uninstall ${package} --version ${version}
try on your machine
This command is used to uninstall a specific version of a package using the Chocolatey package manager.
- "choco" is the command that refers to the Chocolatey package manager.
- "uninstall" is the action to remove or uninstall a package.
- "${package}" represents the name of the package that you want to uninstall. You need to replace "${package}" with the actual name of the package.
- "--version" is an option that specifies the version of the package to uninstall.
- "${version}" represents the specific version of the package that you want to uninstall. You need to replace "${version}" with the actual version number.
So when you run this command, it will uninstall the specified version of the package mentioned in "${package}".
This explanation was created by an AI. In most cases those are correct. But please always be careful and
never run a command you are not sure if it is safe.