Fix Mendeley not uninstalling on Mac

Subscribers:
2,890
Published on ● Video Link: https://www.youtube.com/watch?v=6xVk5_-5mBI



Duration: 1:37
2 views
0


Here's how to Fix Mendeley not uninstalling on Mac. 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 Mendeley for Mac uninstall script codes (beta):

#!/bin/bash

# Uninstall Mendeley on Mac

# Quit Mendeley if it's currently running
if pgrep -x "Mendeley Desktop" angled-bracket-here/dev/null; then
echo "Mendeley Desktop is currently running. Please quit the application before continuing."
exit 1
fi

# Remove the Mendeley application
echo "Uninstalling Mendeley Desktop..."
sudo rm -rf "/Applications/Mendeley Desktop.app"

# Remove the Mendeley preferences
echo "Removing Mendeley preferences..."
sudo rm -rf "$HOME/Library/Preferences/com.mendeley.desktop.plist"

# Remove the Mendeley support files
echo "Removing Mendeley support files..."
sudo rm -rf "$HOME/Library/Application Support/Mendeley Desktop"

# Remove the Mendeley cache files
echo "Removing Mendeley cache files..."
sudo rm -rf "$HOME/Library/Caches/Mendeley Desktop"

echo "Mendeley Desktop has been successfully uninstalled."
exit 0