Skip to content

Instantly share code, notes, and snippets.

@bjoernalbers
Last active June 28, 2023 02:33
Show Gist options
  • Save bjoernalbers/3c3d76c6cd0ae7ef1083b5b9a9496977 to your computer and use it in GitHub Desktop.
Save bjoernalbers/3c3d76c6cd0ae7ef1083b5b9a9496977 to your computer and use it in GitHub Desktop.
Uninstall Native Instruments stuff (i.e. Traktor) from your Mac
#!/bin/sh
# Completely uninstall Native Instruments
#
# WARNING: This will permanently remove all NI stuff. Use at your own risk!
rm -rf "/Applications/Native Instruments"
rm -rf "/Library/Preferences/com.native-instruments".*
rm -rf "/Library/Application Support/Native Instruments"
rm -rf "${HOME}/Library/Preferences/com.native-instruments".*
rm -rf "${HOME}/Library/Application Support/Native Instruments"
rm -rf "${HOME}/Documents/Native Instruments"
rm -rf "${HOME}/Library/Containers/com.native-instruments".*
rm -rf "${HOME}/Music/Traktor"
@bjoernalbers
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment