CMD Clean & Uninstall Software - Neilitlib/MSP-Simple-Commands GitHub Wiki
Adobe Products
PS
Get-Process * | Where-Object {$_.CompanyName -match "Adobe" -or $_.Path -match "Adobe"} | Stop-Process -Force; $folderPath = "C:\apps"; if(!(Test-Path -Path $folderPath )) { New-Item -ItemType directory -Path $folderPath }; Invoke-WebRequest -Uri "https://swupmf.adobe.com/webfeed/CleanerTool/win/AdobeCreativeCloudCleanerTool.exe" -OutFile "C:\apps\AdobeCreativeCloudCleanerTool.exe"; Start-Process -FilePath "C:\apps\AdobeCreativeCloudCleanerTool.exe" -ArgumentList "--eulaAccepted=1 --removeAll=ALL --silent"; Get-WmiObject -Query "SELECT * FROM Win32_Product WHERE Name LIKE 'Adobe%'" | Select-Object Name, Version