Skip to content

Instantly share code, notes, and snippets.

@logworthy
Created August 13, 2019 23:18
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 logworthy/c896b77a51168ebb8338ee78740180d8 to your computer and use it in GitHub Desktop.
Save logworthy/c896b77a51168ebb8338ee78740180d8 to your computer and use it in GitHub Desktop.
Removing a program via powershell
Install-Module -Name PowerShellCookbook
$app = Get-InstalledSoftware | Where-Object { $_.Publisher -like '*Anaconda*' }
$app.UninstallString
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment