Fix LimeWire for Mac not uninstalling
Channel:
Subscribers:
2,900
Published on ● Video Link: https://www.youtube.com/watch?v=H0I1vJXHD64
Here's how to Fix LimeWire 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 LimeWire for Mac uninstall script codes (beta):
#!/bin/bash
# Uninstall LimeWire
# Check if LimeWire is installed
if [ ! -d "/Applications/LimeWire" ]; then
echo "LimeWire is not installed"
exit 1
fi
# Delete the LimeWire folder
rm -rf "/Applications/LimeWire"
# Delete the LimeWire icon from the Dock
osascript -e 'delete alias "LimeWire" from Dock'
# Delete the LimeWire preference file
rm -rf ~/Library/Preferences/com.limewire.limewire.plist
# Restart your computer
reboot