Powershell Silent Uninstall “Microsoft Report Viewer Runtime 2012”
I have tried many of the common approaches (MSI, PowerShell) to silently uninstalling the following application: MSI $ReportViewer2012 = Get-WmiObject -Class Win32_Product -Filter "Name = 'Microsoft Report Viewer 2012 Runtime'" | Select-Object -Expand IdentifyingNumber if ($ReportViewer2012) { echo "Unistalling: Microsoft Report Viewer 2012 Runtime" msiexec /passive /x $ReportViewer2012 | Out-Null } Powershell (Get-WMIObject Win32_Product -Filter 'name="Microsoft Report Viewer 2012 Runtime"').Uninstall() Without any effect, I did however get a verbose log for the output(/L*V): MSI (s) (20:84)