Forum Discussion
After Windows 11 upgrade Bluetooth audio not working only with teams
- Jan 25, 2022
Happy to report that this fixed the issue for me: https://answers.microsoft.com/en-us/windows/forum/all/fix-for-bluetooth-headphones-or-speaker-using/7023c43b-c001-42e9-9ec9-95a8f96a4b4c
After deinstalling Personal Teams the Headset was available on my Bussiness MicrosoftTeams:
PS> Get-AppxPackage "MicrosoftTeams*"|Remove-AppxPackage -AllUsers
PS> Get-AppxProvisionedPackage -online | where-object {$_.PackageName -like "*MicrosoftTeams*"} | Remove-AppxProvisionedPackage -online -Verbose
PS> reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Chat" /v "ChatIcon" /t REG_DWORD /d 0x00000003 /f
also we uninstalled Personal Mail competitively with Outlook:
PS> Get-AppxPackage "*windowscommunicationsapps*"|Remove-AppxPackage -AllUsers
PS> Get-AppxProvisionedPackage -online | where-object {$_.PackageName -like "*windowscommunicationsapps*"}| Remove-AppxProvisionedPackage -online -Verbose