-
-
Save nmichlo/b15a99f7d145839da948e6dd7996f678 to your computer and use it in GitHub Desktop.
Completely uninstall and remove Tuxera NTFS on MacOS (resets trial version)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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