Skip to content

Instantly share code, notes, and snippets.

@patrickgill
Created April 5, 2019 09:57
Show Gist options
  • Save patrickgill/bfcb82bb0fadfcc572b86c9d53aee20b to your computer and use it in GitHub Desktop.
Save patrickgill/bfcb82bb0fadfcc572b86c9d53aee20b to your computer and use it in GitHub Desktop.
# Paths
/System/Library/Extensions/
/Library/Extensions/
# see what third-party extensions are currently there on your machine.
Kextstat | grep –v com.apple
# find the file defining a kext you only know the bundle name of.
kextfind -b <bundlename>
kextfind -b com.AmbrosiaSW.AudioSupport
# unload the kext my using the following command.
sudo kextunload /System/Library/Extensions/NAMEOFTHEKEXT.kext
# Installer logs
/var/log/install.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment