Fix Wi-Fi Speed Drops to a Crawl After a Driver Update on Windows 11

Quick fix: Roll back the Wi-Fi driver to the previous version via Device Manager → Network adapters → [Wi-Fi adapter] → Properties → Driver tab → Roll Back Driver. If the rollback button is greyed out, download the previous driver manually from the manufacturer’s site (Intel, Realtek, Qualcomm) and install with Have Disk. Yesterday your … Read more

Why Your Wi-Fi Says Connected But Has No Internet on Windows 11

Quick fix: Open Terminal (Admin), run ipconfig /flushdns, then netsh int ip reset, then reboot — 70% of “connected but no internet” cases come back online with this three-command sequence. Your Wi-Fi shows connected with full signal bars, but no website loads. The browser hangs at “Connecting…”. Some apps show offline. Other devices on the … Read more

How to Use netsh to Save and Restore Wi-Fi Profiles on Windows 11

Quick fix: Export all Wi-Fi profiles to a folder with netsh wlan export profile folder="C:\WifiBackup" key=clear, then restore later with netsh wlan add profile filename="C:\WifiBackup\Wi-Fi-MyNet.xml". Migrates Wi-Fi credentials between PCs in seconds. You’re moving Windows 11 to a new PC, doing a clean install, or want to back up 30 saved Wi-Fi passwords before a … Read more

How to Remove a Stubborn Bluetooth Device That Won’t Unpair

Quick fix: Open Device Manager → View → Show hidden devices, expand Bluetooth, right-click the stubborn device → Uninstall device → tick “remove driver” if shown. Then run btpair -u from an elevated prompt as a forceful unpair fallback. You try to remove a Bluetooth device from Settings → Bluetooth & devices and either the … Read more

Why Bluetooth Devices Show as Paired but Disconnected on Windows 11

Quick fix: Toggle Bluetooth off and on in Settings → Bluetooth & devices — the radio resets and re-establishes connections to paired devices. If that doesn’t work, the device’s Bluetooth service may not be running; check services.msc for Bluetooth Support Service. You see your Bluetooth headphones listed as paired in Settings, but the status shows … Read more

How to Reset the Entire Network Stack on Windows 11 in One Command

Quick fix: Open Settings → Network & internet → Advanced network settings → Network reset and click Reset now — one button reinstalls every network adapter, clears all saved Wi-Fi profiles, and resets the TCP/IP stack to defaults. Wi-Fi is unreliable, Ethernet shows “identifying” forever, the VPN client says no internet adapter is present, DNS … Read more

Fix Windows 11 VPN Drops Repeatedly After Idle Time

Quick fix: Open Settings → Network & internet → VPN → [your VPN] → Advanced options. Toggle off Connect automatically. Then in the VPN client, configure keep-alive to a short interval (30 seconds) and auto-reconnect on disconnect. For Windows’s built-in VPN client, increase the idle timeout via registry value HKLM\SOFTWARE\Microsoft\RasMan\Parameters\MaxConfigure. Your VPN connects fine and … Read more

How to Set a Per-Adapter Metric to Prioritize Ethernet Over Wi-Fi

Quick fix: Open Settings → Network & internet → Ethernet (or Wi-Fi) → click your adapter → Edit DNS server assignment doesn’t expose metric, so use PowerShell: Set-NetIPInterface -InterfaceAlias "Ethernet" -InterfaceMetric 10. Lower metric = higher priority. Set Wi-Fi to 50 and Ethernet to 10 to make Ethernet preferred. Your laptop has both Ethernet and … Read more