Fix Snagit for Mac not uninstalling

Subscribers:
2,900
Published on ● Video Link: https://www.youtube.com/watch?v=0T4RMUenzM8



Duration: 1:12
0 views
0


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

#!/bin/bash

# Stop the Snagit application
osascript -e 'quit app "Snagit"'

# Remove the Snagit application and its associated files
sudo rm -rf /Applications/Snagit.app
rm -rf ~/Library/Application\ Support/TechSmith/
rm -rf ~/Library/Caches/com.techsmith.snagit/
rm -rf ~/Library/Logs/TechSmith/
rm -rf ~/Library/Preferences/com.techsmith.snagit.plist
rm -rf ~/Library/Saved\ Application\ State/com.techsmith.snagit.savedState/

echo "Snagit has been uninstalled from your Mac."