/build/static/layout/Breadcrumb_cap_w.png

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
  • I found that the WMI command actually runs smoothly across various version of the product:
    $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 3 years ago

Answers (4)

Posted by: rockhead44 7 years ago
Red Belt
1
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 4 months ago
Orange Belt
0
This worked for me
Posted by: danflynn 4 months ago
Orange Belt
0

This worked for me

msiexec.exe with params /x {A2BCA9F1-566C-4805-97D1-7FDC93386723} /qn

Posted by: anonymous_9363 7 years ago
Red Belt
0
I just packaged AIR v20 and v21 and, as downloaded from Adobe, both are MSIs so the usual Windows Installer command line options are available. true, the MSIs are just wrappers for Adobe's own installer but it all works.
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ