Skip to content

Instantly share code, notes, and snippets.

@mtimkovich
Created December 27, 2020 09:19
Show Gist options
  • Save mtimkovich/e4e663e4efd15664b54cebb02e1d86a7 to your computer and use it in GitHub Desktop.
Save mtimkovich/e4e663e4efd15664b54cebb02e1d86a7 to your computer and use it in GitHub Desktop.
Script to uninstall Rocket League
$rl = Get-ItemProperty "HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\Steam App 252950"
$uninstall = $rl.UninstallString.Replace('"', '')
Invoke-Expression $uninstall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment