Fix Camtasia for macOS not uninstalling

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



Duration: 1:37
2 views
0


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

#!/bin/bash

# Stop the Camtasia application
osascript -e 'quit app "Camtasia 2022"'

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

echo "Camtasia has been uninstalled from your Mac."