Fix RealVNC not uninstalling uninstall on Mac
Here's how to Fix RealVNC not uninstalling uninstall 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 RealVNC for Mac uninstall script codes (beta):
#!/bin/bash
# Uninstall RealVNC on Mac
# Quit RealVNC if it's currently running
if pgrep -x "vncserver" angled-bracket-here/dev/null; then
echo "RealVNC Server is currently running. Please quit the application before continuing."
exit 1
fi
# Remove the RealVNC application
echo "Uninstalling RealVNC..."
sudo rm -rf "/Applications/RealVNC/VNC Server.app"
# Remove the RealVNC preferences
echo "Removing RealVNC preferences..."
sudo rm -rf "$HOME/Library/Preferences/com.realvnc.vncserver.plist"
# Remove the RealVNC support files
echo "Removing RealVNC support files..."
sudo rm -rf "$HOME/Library/Application Support/RealVNC"
echo "RealVNC has been successfully uninstalled."
exit 0