Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/remarkablemark/vb-cable-uninstall-macos
:inbox_tray: Uninstall VB-Cable on macOS.
https://github.com/remarkablemark/vb-cable-uninstall-macos
bash macos script vb-cable
Last synced: 19 days ago
JSON representation
:inbox_tray: Uninstall VB-Cable on macOS.
- Host: GitHub
- URL: https://github.com/remarkablemark/vb-cable-uninstall-macos
- Owner: remarkablemark
- License: mit
- Created: 2020-12-31T20:33:22.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-17T08:46:17.000Z (almost 4 years ago)
- Last Synced: 2024-10-11T15:13:02.417Z (about 1 month ago)
- Topics: bash, macos, script, vb-cable
- Language: Shell
- Homepage:
- Size: 6.84 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VB-Cable uninstall (macOS)
Uninstall [VB-Cable](https://vb-audio.com/Cable/) on macOS:
```sh
sudo /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/remarkablemark/vb-cable-uninstall-macos/master/uninstall.sh)"
```Paste the command above in a macOS Terminal.
The VB-Cable uninstall script is inspired by the [forum post](https://forum.vb-audio.com/viewtopic.php?p=3683&sid=f6e0e6f6eec13915a75a230bf92bd451#p3683). Read my [blog post](https://remarkablemark.org/blog/2020/12/31/uninstall-vb-cable-mac/).
## Script
Delete the `VBCable.driver` directory from the `/Library/Audio/Plug-Ins/HAL/` directory:
```sh
sudo rm -rf /Library/Audio/Plug-Ins/HAL/VBCable.driver/
```Delete the `VB-CABLE Control Panel.app` file from the `/Applications/VB-Audio/` directory:
```sh
rm '/Applications/VB-Audio/VB-CABLE Control Panel.app'
```> Since you're removing VB-Cable entirely, you can delete the whole `/Applications/VB-Audio/` directory:
>
> ```sh
> rm -rf /Applications/VB-Audio/
> ```Delete the `com.vbaudio.vbcable.plist` file from the `/Library/Preferences/` directory:
```sh
sudo rm -rf /Library/Preferences/com.vbaudio.vbcable.plist
```Delete the `com.vbaudio.vbcableagent.plist` file from the `/Library/LaunchDaemons/` directory:
```sh
sudo rm -rf /Library/LaunchDaemons/com.vbaudio.vbcableagent.plist
```## License
[MIT](LICENSE)