Skip to content

Instantly share code, notes, and snippets.

@nmichlo
Forked from miguelmota/remove_tuxera.sh
Created December 15, 2020 19:45
Show Gist options
  • Save nmichlo/b15a99f7d145839da948e6dd7996f678 to your computer and use it in GitHub Desktop.
Save nmichlo/b15a99f7d145839da948e6dd7996f678 to your computer and use it in GitHub Desktop.
Completely uninstall and remove Tuxera NTFS on MacOS (resets trial version)
unload_files=(
"/Library/LaunchAgents/com.tuxera.ntfs.agent.plist"
)
for unload_file in "${unload_files[@]}"; do
echo "Unloading: ${unload_file}"
launchctl unload "${unload_file}"
echo
done
remove_dirs=(
"/Library/LaunchAgents/com.tuxera.ntfs.agent.plist"
"/Library/PreferencePanes/Tuxera NTFS.prefPane"
"/Library/Preferences/com.tuxera.NTFS.plist"
"/Applications/Tuxera Disk Manager.app"
"/Library/Application Support/Tuxera NTFS"
"/Library/Filesystems/fusefs_txantfs.fs"
"/Library/Filesystems/tuxera_ntfs.fs"
)
for remove_dir in "${remove_dirs[@]}"; do
echo "Removing: ${remove_dir}"
rm -rf "${remove_dir}"
echo
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment