Uninstall with PS

Get-WmiObject -Class Win32_Product | Select-Object -Property Name
Mozilla Firefox (en-US)
$MyApp = Get-WmiObject -Class Win32_Product | Where-Object{$_.Name -eq "Mozilla Firefox (en-US)"}
$MyApp.Uninstall()