With most apps that are installed by drag-and-dropping, this isn't a problem. VSTs and AUs are however usually installed via .pkg files, where it does become one if you want to get rid of the expired trial version of a bloodyexpensive synth you didn't like.
Also it's the same with anything installed from the Mac App store.
For apps and browser plugins, there are third party tools to help removal. Not for AUs and VSTs though! (Weird, as OSX does have a central repository of installation receipts.)
There are instructions out there on using command line to purge packages. What worked for me is the following:
Code: Select all
$ cd /
$ pkgutil --only-files --files the-package-name | tr '\n' '\0' | xargs -n 1 -0 sudo rm
$ pkgutil --only-dirs --files the-package-name | tr '\n' '\0' | xargs -n 1 -0 sudo rmdir
$ sudo pkgutil --forget the-package-name.pkgWhile I'm thinking of writing a program to help list and remove packages similar to the "add and remove programs" util in Windows, I'm really wondering why nobody did this before me.
Maybe I just didn't look hard enough, and someone knows the holy grail for this problem. How do YOU remove AUs and VSTs from your Mac?
