Fix Rescue Kit for Mac not uninstalling

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



Duration: 1:02
3 views
0


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

#!/bin/bash

# This script uninstalls Rescue Kit for Mac.

# Check if Rescue Kit is installed.
if [[ -f "/Applications/Rescue\ Kit.app" ]]; then

# Uninstall Rescue Kit.
rm -rf "/Applications/Rescue\ Kit.app"

# Remove the Rescue Kit preference pane.
rm -rf "~/Library/Preferences/com.rescuekit.RescueKit.plist"

fi

# Print a message to the user.
echo "Rescue Kit has been successfully uninstalled."