Uninstall applications using Powershell - OnTheKnows/A GitHub Wiki
Get-WmiObject -Class Win32_Product | Select-Object -Property Name
$MyApp = Get-WmiObject -Class Win32_Product | Where-Object{$_.Name -eq "Free Tools"}
$MyApp.Uninstall()
https://redmondmag.com/articles/2019/08/27/powershell-to-uninstall-an-application.aspx