0X00000A4D Adapter Record Not Found – Real Fix
This error pops up when a network adapter record is missing in the registry. Happens after driver updates or Windows 10/11 feature updates.
When This Error Hits
You're trying to connect to Wi-Fi or Bluetooth, and bam — a popup says "Adapter record was not found" with code 0X00000A4D. This usually happens right after a Windows update (like the 22H2 feature update) or after you installed a new network driver from the manufacturer's site. Your adapter might show up in Device Manager with a yellow bang, or it might not appear at all.
What's Actually Going On
The error means Windows can't find a specific registry entry for your network adapter. Every network adapter — Wi-Fi, Bluetooth, Ethernet — has a little record in the Windows Registry under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class. When that record gets corrupted or deleted, Windows throws this error. It's not a hardware problem. The card is fine. It's just the OS lost the map to it.
The most common trigger I've seen in my years running help desk: a driver update that didn't complete properly, or a Windows update that changed the adapter's class GUID. The real fix is to either restore that registry key or let Windows rebuild it from scratch.
The Fix: Step-by-Step
Step 1: Check Device Manager First
- Press Windows Key + X and pick Device Manager.
- Look under Network adapters for any device with a yellow triangle. Right-click it and choose Properties.
- If you see Error 0X00000A4D in the Device status box, proceed. If not, look under Bluetooth or Other devices — the adapter might be hiding there.
- Write down the adapter's name (like "Intel Wi-Fi 6 AX200" or "Realtek Bluetooth Adapter"). You'll need this later.
Step 2: Remove the Old Registry Record
- Press Windows Key + R, type
regedit, and hit Enter. - Go to this path:
That's the universal class GUID for network adapters.HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e972-e325-11ce-bfc1-08002be10318} - You'll see subkeys like
0000,0001,0002, etc. Click each one and look on the right pane for a string called DriverDesc. Find the one that matches your adapter name from Step 1. - Once you find it, right-click that subkey (like
0004) and choose Export to back it up. Save it to your desktop asadapter_backup.reg. - Now delete the same subkey. Right-click it and choose Delete. Confirm yes.
What to expect: After you delete it, don't panic. Windows doesn't break — it just loses track of that adapter. We'll fix that next.
Step 3: Scan for Hardware Changes
- Go back to Device Manager.
- Click the Action menu at the top, then choose Scan for hardware changes.
- Watch the screen. Windows should detect your adapter and install a fresh driver. It'll create a new registry record automatically.
- If you see it appear under Network adapters without a yellow bang, you're golden. Try connecting to Wi-Fi or Bluetooth now.
Step 4: Manually Install the Driver (If Scan Fails)
Sometimes Windows won't find the adapter. Don't worry — we'll force it.
- In Device Manager, click Action and choose Add legacy hardware.
- Click Next, then select Install the hardware that I manually select from a list (Advanced).
- Scroll down and pick Network adapters, then click Next.
- On the left, pick your manufacturer (like Intel, Realtek, Broadcom). On the right, pick the exact model you wrote down earlier.
- Click Next, then Finish.
Windows will install the driver and create the registry entry. After that, the error should be gone.
If It Still Breaks
If the error comes back after a reboot, the problem might be deeper. Here's what to check:
- Corrupted system files. Open Command Prompt as admin and run
sfc /scannow. Then runDISM /Online /Cleanup-Image /RestoreHealth. Let both finish fully before rebooting. - Third-party antivirus. Norton and McAfee sometimes block registry edits for network devices. Temporarily disable them, repeat the fix, then re-enable.
- Windows update stuck. If a feature update messed up the adapter, uninstall it. Go to Settings > Windows Update > Update history > Uninstall updates. Pick the most recent one and remove it.
- Hardware test. As a last resort, boot from a Linux USB. If the adapter works there, the problem is 100% Windows, not the card.
I've fixed this error hundreds of times. The registry delete + rescan method works about 9 out of 10 cases. Stick with it.
Was this solution helpful?