Forked from guycalledseven/tplink_ue300_driver_uninstall.sh
Created
February 28, 2019 03:08
-
-
Save florido/90415e70af7fea9246437db6a6da3727 to your computer and use it in GitHub Desktop.
Manually uninstall TPLINK UE300 USB3 WIFI dongle drivers on OS X
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
!/bin/sh | |
sudo kextunload /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleRTL815XEthernet.kext | |
sudo rm -rf /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleRTL815XEthernet.kext | |
sudo kextunload /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleRTL815XComposite.kext | |
sudo rm -rf /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleRTL815XComposite.kext | |
sudo kextunload /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleRTL815XEthernet109.kext | |
sudo rm -rf /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleRTL815XEthernet109.kext | |
sudo kextunload /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleRTL815XComposite109.kext | |
sudo rm -rf /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleRTL815XComposite109.kext | |
sudo pkgutil --forget AppleRTL815XEthernet | |
sudo pkgutil --forget AppleRTL815XEthernet | |
sudo pkgutil --forget AppleRTL815XComposite | |
sudo pkgutil --forget AppleRTL815XEthernet109 | |
sudo pkgutil --forget AppleRTL815XComposite109 | |
sudo rm -rf /System/Library/Caches/com.apple.kext.caches | |
sudo touch /System/Library/Extensions | |
networksetup -listallnetworkservices | |
networksetup -removenetworkservice 'USB 10/100/1000 LAN' | |
networksetup -listnetworkserviceorder |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment