Here’s the full breakdown of what I went through and what actually fixed it.
First: confirm it’s not the adapter itself
Before touching software, plug the adapter into a different computer if you can. If it disconnects there too, the hardware is probably faulty. If it’s stable on the other machine, the problem is with your system’s settings or drivers, and the fixes below should help.
Fix 1: Enable the WLAN AutoConfig service
This is a Windows background service that manages wireless connections. If it’s stopped or set to manual, you can get intermittent drops.
- Press Win + R, type
services.msc, press Enter - Scroll to WLAN AutoConfig
- Right-click, select Properties
- Set Startup type to Automatic
- Click Start if it’s not already running, then OK
Fix 2: Disable power management on the adapter
Windows will cut power to USB devices to save battery. For a Wi-Fi adapter this is a disaster.
For the network adapter:
- Open Device Manager (Win + R >
devmgmt.msc) - Expand Network adapters
- Right-click your Wi-Fi adapter > Properties > Power Management
- Uncheck Allow the computer to turn off this device to save power
For USB Root Hubs:
- In Device Manager, expand Universal Serial Bus controllers
- Right-click each USB Root Hub > Properties > Power Management
- Uncheck the same box for all of them
Fix 3: Update or reinstall the adapter driver
Outdated or corrupted drivers are one of the most common reasons for this.
Right-click the adapter in Device Manager and choose Update driver > Search automatically. If that doesn’t work, go to the manufacturer’s website (TP-Link, Realtek, etc.) and download the latest driver manually.
Fix 4: Reset your router
If the adapter keeps losing connection to the same network even with good signal, the router might be the issue. Hold the reset button on the back for 15-20 seconds, wait for it to restart, and reconnect.
Fix 5: Network settings reset via command line
Open Command Prompt as administrator and run these one at a time:
ipconfig /release
ipconfig /flushdns
ipconfig /renew
Then restart your computer.
What actually fixed mine
It was the power management settings on the USB Root Hub. The adapter kept getting powered down after a few minutes of inactivity. Once I unchecked that box for all USB Root Hubs, it’s been stable for days.
Worth noting: if you’re using a USB 3.0 port and the adapter is misbehaving, try plugging it into a USB 2.0 port instead. Some adapters have known compatibility issues with USB 3.x in certain configurations. You lose a bit of speed but gain stability.