Fix Camtasia for macOS not uninstalling
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."