Last active
May 3, 2021 02:00
-
-
Save mlgill/3f327c4af19fc5d775a7 to your computer and use it in GitHub Desktop.
Uninstalling Adobe AIR on Mac OS X
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Installing Adobe AIR creates an application called "Adobe AIR Uninstaller" in /Applications/Utilities. | |
# Unfortunately, running this application does not uninstall the application and instead, it seems to | |
# unhelpfully confirm that it's installed (http://twitter.com/modernscientist/status/495388916267384833/photo/1). | |
# The proper way to run this application as an uninstaller is to run the enclosed from the command line | |
# with the flag "-uninstall" as superuser: | |
sudo /Applications/Utilities/Adobe\ AIR\ Uninstaller.app/Contents/MacOS/Adobe\ AIR\ Installer -uninstall | |
# You can also redownload the application and run the uninstaller from there if it is no longer | |
# present on the Mac: http://techbookshelf.com/2010/03/02/how-to-uninstall-adobe-air/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Updated link to re download the application: https://techbookshelf.wordpress.com/2010/03/02/how-to-uninstall-adobe-air/
Thanks for this!