Fix Plex Media Player not uninstalling on Mac

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



Duration: 1:43
3 views
0


Here's how to Fix Plex Media Player 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 Plex Media Player for Mac uninstall script codes (beta):

#!/bin/bash

# Uninstall Plex Media Player on Mac

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

# Remove the Plex Media Player application
echo "Removing Plex Media Player..."
sudo rm -rf "/Applications/Plex Media Player.app"

# Remove the Plex Media Player preferences
echo "Removing Plex Media Player preferences..."
sudo rm -rf "$HOME/Library/Preferences/tv.plex.Plex Media Player.plist"

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

# Remove the Plex Media Player cache files
echo "Removing Plex Media Player cache files..."
sudo rm -rf "$HOME/Library/Caches/tv.plex.Plex Media Player"

echo "Plex Media Player has been successfully removed."
exit 0