web-dev-qa-db-ja.com

Chocolateyパッケージとそのすべての依存関係をアンインストールするにはどうすればよいですか?

ドキュメントを読むと、-xフラグを使用してパッケージとその依存関係をインストールできるはずです。しかし、コマンドchoco uninstall javaruntime -xを使用してjavaruntimeパッケージをアンインストールしようとすると、依存関係のために失敗します。

それは私にこのエラーを与えます:

>  choco uninstall javaruntime -x
Chocolatey v0.10.1
Uninstalling the following packages:
javaruntime
javaruntime not uninstalled. An error occurred during uninstall:
 Unable to uninstall 'javaruntime 8.0.101' because 'groovy 2.3.6' depends on it.

Chocolatey uninstalled 0/1 packages. 1 packages failed.
 See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).

Failures
 - javaruntime (exited 1) - javaruntime not uninstalled. An error occurred during uninstall:
 Unable to uninstall 'javaruntime 8.0.101' because 'groovy 2.3.6' depends on it.

私は何か間違ったことをしていますか?

8
PortMan

これを試して:

choco uninstall webdeploy -x

webdeployは、アンインストールするターゲットパッケージに変更できます。

Enter image description here

7