Skip to content

Instantly share code, notes, and snippets.

@hacker1024
Last active April 1, 2025 19:46
Show Gist options
  • Save hacker1024/e81244dd62156a771ecb1de134c6b1ef to your computer and use it in GitHub Desktop.
Save hacker1024/e81244dd62156a771ecb1de134c6b1ef to your computer and use it in GitHub Desktop.
Disable AAC Bluetooth audio codec in Windows
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BthA2dp\Parameters]
"BluetoothAacEnable"=dword:00000000
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BthA2dp\Parameters]
"BluetoothAacEnable"=dword:00000001
@hacker1024
Copy link
Author

Ever since AAC was introduced in a Windows 10 insider build, my QCY-T5 earphones haven't been working at all. This fixes that as well.

@f219725
Copy link

f219725 commented Oct 4, 2023

Thank You very much.

@LightShard
Copy link

Thank you so much this is great!

@feefies
Copy link

feefies commented Jul 4, 2024

i cant find parameters, help!

@dojohojokojo
Copy link

i cant find parameters, help!

Hi same issue here - what do we do when there is no parameters folder?

@dojohojokojo
Copy link

i cant find parameters, help!

Hi same issue here - what do we do when there is no parameters folder?

OK so for those of you who don't have parameters - I tried something and it worked.

Manually Create the "Parameters" Folder & Disable AAC Codec

  1. Open the Registry Editor
    Press Win + R, type regedit, and press Enter.

If prompted by User Account Control (UAC), click Yes.

  1. Navigate to the Correct Location
    In the Registry Editor, go to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BthA2dp

  2. Create the "Parameters" Folder (If Missing)
    Right-click on BthA2dp in the left panel.

Select New > Key.

Name it Parameters and press Enter.

  1. Create the "BluetoothAacEnable" Key
    Click on the newly created Parameters folder.

In the right panel, right-click on an empty space.

Select New > DWORD (32-bit) Value.

Name it BluetoothAacEnable.

Double-click it, set Value Data to 0, and click OK.

  1. Close the Registry Editor & Restart your PC for the changes to take effect.

  2. Reconnect Your Bluetooth Device
    Remove & re-pair your Bluetooth device from Settings > Bluetooth & Devices.

If your pc does not allow you to add a new device for some reason - restart it (and click restart with updates if that shows up)

You should be good to go.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment