I would think this shouldn't be too hard, but apparently I'm doing something wrong, can anyone give me any suggestions please?
$appname = "Google Toolbar for Internet Explorer"
$app = get-wmiobject win32_product | where-object {$_.name -match $appname}
$app.Uninstall()
Any thoughts?