Skip to content

Instantly share code, notes, and snippets.

@arieljannai
Created June 17, 2016 06:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arieljannai/647b2cca0a4f0a6f6838069edd8543ce to your computer and use it in GitHub Desktop.
Save arieljannai/647b2cca0a4f0a6f6838069edd8543ce to your computer and use it in GitHub Desktop.
Delete all java versions by oracle
# It's pretty slow, but works
Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -match "Java" -and $_.Vendor -match "Oracle" } | ForEach-Object { $_.Uninstall() }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment