Fix ChronoSync not uninstalling on Mac

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



Duration: 1:37
4 views
0


Here's how to Fix ChronoSync 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 uninstall script codes (beta):

#!/bin/bash

# Uninstall ChronoSync on Mac

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

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

# Remove the ChronoSync preferences
echo "Removing ChronoSync preferences..."
sudo rm -rf "$HOME/Library/Preferences/com.econtechnologies.chronosync.plist"

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

# Remove the ChronoSync cache files
echo "Removing ChronoSync cache files..."
sudo rm -rf "$HOME/Library/Caches/com.econtechnologies.chronosync"

echo "ChronoSync has been successfully uninstalled."
exit 0