TL;DR: copy, paste, and run the uninstall script in Terminal:
sudo /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/remarkablemark/vb-cable-uninstall-macos/master/uninstall.sh)"
Uninstall
Required
Delete the VBCable.driver
directory from the /Library/Audio/Plug-Ins/HAL/
directory:
sudo rm -rf /Library/Audio/Plug-Ins/HAL/VBCable.driver/
Verify the directory is no longer there:
find /Library/Audio/Plug-Ins/HAL/ -type d -iname 'vbcable*' -maxdepth 1
Delete the VB-CABLE Control Panel.app
file from the /Applications/VB-Audio/
directory:
rm '/Applications/VB-Audio/VB-CABLE Control Panel.app'
Or delete the entire /Applications/VB-Audio/
directory:
rm -rf /Applications/VB-Audio/
Optional
Delete the com.vbaudio.vbcable.plist
file from the /Library/Preferences/
directory:
sudo rm -rf /Library/Preferences/com.vbaudio.vbcable.plist
Delete the com.vbaudio.vbcableagent.plist
file from the /Library/LaunchDaemons/
directory:
sudo rm -rf /Library/LaunchDaemons/com.vbaudio.vbcableagent.plist
Final
Once you finished deleting, restart your computer.
Resources
- The VB-Cable uninstall script is inspired by the forum post.
- See the GitHub repository.