5 0

Silent uninstall Adobe Reader DC

MsiExec.exe /X {AC76BA86-1033-1033-7760-BC15014EA700} /qn
MsiExec.exe /X {AC76BA86-7AD7-1043-7B44-AC0F074E4100} /qn

Uninstall All Adobe products:
$programName = "*Adobe*"
$installedProducts = Get-WmiObject Win32_Product
$filteredProducts = $installedProducts | Where-Object { $_.Name -like $programName }
if ($filteredProducts.Count -eq 0) {
    Write-Host "No products found matching the name $programName."
} else {
    foreach ($product in $filteredProducts) {
        $identifyingNumber = $product.IdentifyingNumber
        Write-Host "Uninstalling $($product.Name) with IdentifyingNumber $identifyingNumber"
        Start-Process "msiexec.exe" -ArgumentList "/qn /norestart /X $identifyingNumber" -Wait
    }
    Write-Host "All products matching the name $programName have been uninstalled."
}