Last active
July 30, 2025 00:30
-
-
Save ziadoz/080074b0df4002d7ac13ae24fb62c50d to your computer and use it in GitHub Desktop.
macOS Microsoft Teams Audio Driver Issues
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
In the middle of a Zoom call my audio in/out devices changed to “Microsoft Teams Audio Devices”, despite no longer having Microsoft Teams installed. | |
It turns out Teams leaves its audio driver on your system running, and it occasionally decides to make itself the default. | |
I had to delete: /Library/Audio/Plug-Ins/HAL/MSTeamsAudioDevice.driver in the end to fix it: | |
sudo rm -rf /Library/Audio/Plug-Ins/HAL/MSTeamsAudioDevice.driver | |
https://forums.macrumors.com/threads/how-to-uninstall-core-audio-driver-msteamsaudiodevice-driver.2344450/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Charming behavior. Thank you @ziadoz!