Fix AOL for Mac not uninstalling

Subscribers:
2,900
Published on ● Video Link: https://www.youtube.com/watch?v=RIOOhqdMpP4



Duration: 1:30
1 views
0


Here's how to Fix AOL for Mac not uninstalling. For starters, use CleanMyMac X@ https://macpaw.audw.net/c/376211/63812/1733 so u can efficiently manage installed app & your Mac.

Below are the AOL for Mac uninstall script codes (beta):

#!/bin/bash

# Stop AOL if it's currently running
if pgrep "AOL" angled-bracket-here /dev/null; then
echo "Stopping AOL"
osascript -e 'quit app "AOL"'
fi

# Remove AOL application and related files
echo "Removing AOL"
sudo rm -rf /Applications/AOL\ Desktop/
rm -rf ~/Library/Application\ Support/AOL\ Desktop/
rm -rf ~/Library/Caches/com.aol.desktop/
rm -rf ~/Library/Preferences/com.aol.desktop.plist
rm -rf ~/Library/Saved\ Application\ State/com.aol.desktop.savedState/

echo "AOL has been uninstalled"