Windows uninstall app via powershell

From UVOO Tech Wiki
Revision as of 17:01, 19 September 2022 by Busk (talk | contribs) (Created page with "https://techgenix.com/how-to-uninstall-software-using-powershell/ ``` $app = Get-WmiObject -Class Win32_Product | Where-Object{$_.Name -eq “Sensu Agent”} $app.uninstall(...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

https://techgenix.com/how-to-uninstall-software-using-powershell/

$app = Get-WmiObject -Class Win32_Product | Where-Object{$_.Name -eq “Sensu Agent”}
$app.uninstall()