
Sep 14, 2015 I would like to make an OSX command script that removes every trace of any Native Instruments files, drivers and software. I only own a Maschine and an X1 so I don't know what else I am missing but I likely am missing something. Sometimes it is necessary to uninstall and reinstall your Native Instruments software, drivers and files as a solution for technical issues. Unfortunately Native Instruments has removed their official uninstaller for OSX and their online documentation on the process is far from complete or accurate; even worse it's annoying to go through every. To uninstall Office for Mac 2011 move the applications to the Trash.Once you've removed everything, empty the Trash and restart your Mac to complete the process. Before you remove Office for Mac 2011, quit all Office applications and make sure there's nothing in Trash that you want to keep.
Sometimes it is necessary to uninstall and reinstall your Native Instruments software, drivers and files as a solution for technical issues. Unfortunately Native Instruments has removed their official uninstaller for OSX and their online documentation on the process is far from complete or accurate; even worse it's annoying to go through every directory and manually remove every file.

This .COMMAND script will launch a terminal instance and guide you through the process of removing all Native Instruments software, drivers and files for you.
How to Use the Uninstaller
- Download the ni-uninstall.command file.
- Double click the ni-uninstall.command file.
- When prompted to uninstall everything type either Y or y.
- You will then be asked for your root user password.
- The command will uninstall all NI files.
- The command will launch Disk Utility and Repair Permissions.
- You will be asked if you want to reboot your computer.
- All done!
What does the Uninstaller Do?
In order for the command file to uninstall your NI application it will need root acess to remove the following files and folder from your system:
- Macintosh HD > Applications > Native Instruments > Product Name (folder)
- Macintosh HD > Library > Preferences > com.native-instruments.Product Name.plist
- Macintosh HD > Library > Audio > Plug-ins > Components > Product Name.component
- Macintosh HD > Library > Audio > Plug-ins > VST > Product Name.vst
- Macintosh HD > Library > Application Support > Digidesign > Plug-ins > Product Name.dpm
- Macintosh HD > Library > Application Support > Avid > Audio > Plug-ins > Product Name.aaxplugin
- Macintosh HD > Library > Application Support > Native Instruments > Product Name (folder)
- Macintosh HD > Users > Your User Name > Library > Preferences > com.native-instruments.Product Name.plist
- Macintosh HD > Users > Your User Name > Library > Application Support > Native Instruments > Product Name (folder)
- Macintosh HD > System > Library > Extensions > NIUSB Product Name.kext files
Library Files
This .COMMAND script does not remove your libraries.
If you are uninstalling one of Native Instruments' sample-based programs, i.e. KONTAKT, BATTERY, AKOUSTIK PIANO or ELEKTRIK PIANO, there is also a sample library that can be deleted. It is located in the directory you chose during installation. Please note that it is NOT necessary to uninstall the library in most cases to fix common issues. You can safely leave this folder in place in most cases unless the problem you are having is related to the library content itself.
PermalinkJoin GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upBranch:master
#!/bin/bash |
# This script removes all Native Instruments files, software, and drivers. |
# https://www.native-instruments.com/en/support/knowledge-base/show/413/how-to-uninstall-native-instruments-software-and-drivers-from-a-mac-os-x-computer/ |
read -p 'Are you sure you want to uninstall all Native Instruments software and drivers?' -n 1 -r |
echo |
if [[ $REPLY=~ ^[Yy]$ ]];then |
echo |
echo'Uninstalling...' |
echo'Please enter your root user credentials below.' |
sudo rm -rfv /Applications/Native Instruments |
sudo rm -fv /Library/Preferences/com.native-instruments.*.plist |
sudo rm -rfv /Library/Audio/Plug-Ins/Components/Maschine* |
sudo rm -rfv /Library/Audio/Plug-Ins/VST/Maschine* |
sudo rm -rfv /Library/Application Support/Digidesign/Plug-Ins/Maschine* |
sudo rm -rfv /Library/Application Support/Avid/Audio/Plug-Ins/Maschine* |
sudo rm -rfv /Library/Application Support/Native Instruments |
sudo rm -fv ~/Library/Preferences/com.native-instruments.*.plist |
sudo rm -rfv ~/Library/Application Support/Native Instruments |
sudo rm -rfv /System/Library/Extensions/NIUSB*.kext |
sudo rm -rfv /Library/Audio/MIDIDevices/Native Instruments |
sudo rm -rfv ~/Library/Application Support/Native Instruments |
if [[ ${OS_Version} 10.11 ]];then |
echo'Operating System does not require disk utility to repair permissions.' |
else |
echo'Repairing Disk Permissions' |
echo |
sudo diskutil repairPermissions / |
fi |
fi |
read -p 'Reboot?' -n 1 -r |
echo |
if [[ $REPLY=~ ^[Yy]$ ]];then |
sudo shutdown -r now |
fi |
echo |
echo'EXIT' |
exit |

Uninstall Native Instruments Library Mac Download
Copy lines Copy permalink