Does anybody knows the silent uninstall command for Adobe Air to use in Kace?
I'm task with creating a silent uninstall command line to uninstall Adobe Air in Kace, and I can not find one. Does anybody has one that they
can share with me.
1 Comment
[ + ] Show comment
Answers (4)
Please log in to answer
Posted by:
rockhead44
8 years ago
I found this online. I can't vouch for it but you can test it out
"C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe" -uninstall -silent
The -slient is the key switch here. See if that works for you.
My AIR installs show this for the uninstall command (via KACE software inventory)
c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater.exe -arp:uninstall
Posted by:
danflynn
11 months ago
Posted by:
anonymous_9363
8 years ago
$uninstallAir = Get-WmiObject -Class Win32_Product | Where-Object {$_.Name -match "Adobe AIR"} -ErrorAction Ignore; $uninstallAir.Uninstall();
Remove-Item -Recurse "c:\Program Files (x86)\Common Files\Adobe AIR" -ErrorAction Ignore - sultryninja 4 years ago