Ms Windows

Airplane Mode Not Working in Windows 10? Troubleshoot & Fix Fast

airplane mode doesn’t work in Windows 10 describes a situation where the Airplane Mode setting on a Windows 10 PC behaves incorrectly: it may be stuck on, stuck off, the toggle is greyed out, Wi‑Fi/Bluetooth remain enabled despite Airplane Mode, or the system reports no radio devices or “no network adapter drivers found.” This can be caused by software bugs, corrupted drivers, disabled Windows services, hardware switches or function keys, registry corruption, or faulty hardware. The result: you cannot control radios (Wi‑Fi, Bluetooth, cellular) reliably, which prevents connecting or disconnecting from networks when needed.


Key takeaways / Summary points

  • Airplane Mode issues are usually caused by driver/service problems or Windows settings, rarely by permanent hardware faults.
  • Start with simple steps (restart, check function keys, toggle in Action Center) and progress to driver reinstall, service checks, and registry fixes.
  • Use built‑in troubleshooters, network reset, and PowerShell/netsh commands for diagnostics.
  • Backup the registry before editing and download drivers from your PC vendor when possible.
  • If all else fails, consider a clean driver install or Windows repair (SFC/DISM/System Restore).

Possible causes

1) Faulty or outdated network drivers

  • Wireless (Wi‑Fi/WLAN) and bluetooth drivers can become corrupted or incompatible after updates.
  • Windows may report “no network adapter drivers were found” or show Code 10 in Device Manager.
See also  Fixing Ctrl + Alt + Delete Not Working in Windows 11: Quick Solutions

2) Windows services or radio management problems

  • The Radio Management/Network-related services that control scanning and radio state may be stopped or misconfigured.

3) Registry or os configuration corruption

  • Airplane Mode state can be stored in registry keys that, if corrupted, make toggles unresponsive or wrong.

4) Physical hardware switches or function key conflicts

  • Many laptops use a hardware switch or Fn + function key to toggle radios; this can override OS controls.

5) Third‑party software or VPN/network utilities

  • Security suites, VPN clients, or Wi‑Fi managers can interfere with Windows network control.

6) hardware failure

  • Faulty Wi‑Fi/Bluetooth adapters or modules (especially removable M.2 cards) may cause the system to behave as if radios aren’t present.

Step-by-step troubleshooting guide

Follow these steps in order. After each major step, check whether Airplane Mode now behaves correctly.

Step 1 — Basic checks (fast wins)

  • Restart your PC. A restart often clears transient issues.
  • Check the Action Center: Click the notifications (speech bubble) icon on the taskbar and toggle Airplane Mode. Also try clicking the Network / volume / battery icon and toggle Airplane Mode there.
  • Check physical switches and function keys: Look for a dedicated wireless switch or press Fn + the key with a wireless/radio icon (often F2, F3, F12). Try pressing the function key combination several times.

Step 2 — Toggle Wi‑Fi/Bluetooth while in Airplane Mode

  • Windows allows you to turn Wi‑Fi and Bluetooth back on while Airplane Mode is enabled. This verifies whether the OS has control over radios.
  • Settings > Network & internet > Airplane mode. If toggles for Wi‑Fi or Bluetooth are responsive, try turning them off and on to test behavior.

Step 3 — Run the Windows network troubleshooter

  • Settings > Update & Security > Troubleshoot > Additional troubleshooters > Network Adapter. Run the troubleshooter for Wireless or Network Adapter and follow the prompts.

Step 4 — Check Device Manager and reinstall drivers

  1. Open Device Manager (devmgmt.msc).
  2. Expand Network adapters. If you see any warning icons or unknown devices:
    • Right‑click your Wi‑Fi adapter > Properties to view status and error codes (e.g., Code 10).
  3. To reinstall:
    • Right‑click > Uninstall device. If prompted, check Delete the driver software for this device (if you have a known good driver saved elsewhere).
    • Reboot — Windows will attempt to reinstall the driver automatically.
  4. If Windows installs a generic/old driver, download the latest driver from your PC manufacturer (Dell/HP/Lenovo/asus) or the adapter chipset vendor (Intel/Qualcomm/Atheros) and install it.
See also  Fix HDMI Audio Issues in Windows 11: Troubleshooting Guide

PowerShell snippet to list adapters:

Get-NetAdapter | Format-Table -AutoSize

To enable a named adapter:

Enable-NetAdapter -Name “Wi‑Fi” -Confirm:$false


Step 5 — Network reset and TCP/IP repair

  • Settings > Network & internet > Network reset > Reset now. This reinstalls network adapters and resets networking components; you must reconnect to Wi‑Fi and reenter passwords afterward.
  • Run these from an elevated command prompt to reset IP and DNS:

ipconfig /release
ipconfig /renew
ipconfig /flushdns
netsh int ip reset
netsh winsock reset


Step 6 — Check and start relevant Windows services

Open services.msc and ensure these services are running (set to Automatic or Manual as appropriate):

  • Radio Management Service (look for “Radio Management” or similar display name)
  • Network List Service
  • Network Location Awareness
  • Windows Event Log (must be running)
    Start any stopped service and set Startup type to Automatic if needed. If you’re unsure, restart your PC after changing service settings.

Step 7 — Run SFC and DISM to repair system files

Open an elevated command prompt:

sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth

These commands repair missing/corrupted system files that might affect air‑control features.


Step 8 — Edit the registry (with backup)

Warning: editing the registry can cause issues. Back up the registry first (File > Export in regedit).

Common registry location that may influence radio/Airplane state:

  • HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlRadioManagementSystemRadioState

If present, values:

  • 0 = radios off
  • 1 = radios on

To edit:

  1. Run regedit.
  2. Navigate to the key above.
  3. If SystemRadioState seems incorrect, change value to 0 or 1 to match desired state.
  4. Reboot.

If you don’t find the key, skip this step and continue other fixes. Always back up before changes.


Step 9 — Use System Restore or Safe Mode

  • Boot into Safe Mode with Networking to determine whether third‑party software causes the problem. If Airplane Mode works in Safe Mode, disable/uninstall recently added apps (VPNs, wireless utilities).
  • If the issue started after a change or update, consider using System Restore to revert to a known good state.

Step 10 — BIOS/UEFI and hardware checks

  • In rare cases the wireless controller is disabled in BIOS/UEFI. Reboot and check BIOS settings for wireless/Bluetooth.
  • If using a removable Wi‑Fi card, reseat it or test with an external USB Wi‑Fi adapter to confirm hardware failure.

Cause/Solution quick reference

  • Cause: Driver corrupted or outdated
    • Solution: Reinstall or update Wi‑Fi/Bluetooth drivers from vendor.
  • Cause: Radio Management or network services stopped
    • Solution: Start relevant services via services.msc.
  • Cause: Registry misconfiguration
    • Solution: Back up and edit SystemRadioState value, then reboot.
  • Cause: Function key or hardware switch
    • Solution: Toggle the physical switch or use Fn + function key.
  • Cause: Third‑party interference
    • Solution: Boot to Safe Mode; uninstall problematic software.
  • Cause: System file corruption
    • Solution: Run SFC and DISM.
  • Cause: Hardware fault
    • Solution: Test with external adapter or replace internal module.
See also  Fix Game Bar Overlay Issues in Windows 11: Troubleshooting Guide

Common mistakes and how to avoid them

  • Mistake: Skipping driver source verification
    • Avoid by downloading drivers only from OEM or chipset vendor sites; do not rely solely on generic Windows drivers if they don’t work.
  • Mistake: Editing registry without backup
    • Always export the registry key or create a system restore point first.
  • Mistake: Running random “fix” utilities
    • Stick to official Microsoft troubleshooters and vendor tools.
  • Mistake: Not checking hardware switches / BIOS
    • Verify physical controls first before deep software changes.
  • Mistake: Performing network reset without noting Wi‑Fi credentials
    • Save network passwords or have them available; you’ll need to reconnect afterward.

Prevention tips / Best practices

  • Keep Windows and drivers up to date (use Windows Update and your PC manufacturer’s driver site).
  • Avoid installing multiple third‑party network managers; use Windows networking unless a vendor utility is required.
  • Create a restore point before major updates or driver installs.
  • Keep a recovery USB or external network adapter handy for troubleshooting.
  • Use built‑in troubleshooters first (Settings > Troubleshoot) before registry edits.

Useful logs, commands and configuration examples

  • Check adapter status:

Get-NetAdapter | Format-Table -AutoSize

  • Check IP and DNS:

ipconfig /all
ipconfig /flushdns

  • Network reset (no command; use Settings > Network & internet > Network reset)
  • Repair system image and files:

sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth

  • Device Manager: To view driver details, find the adapter > Properties > Driver tab. Note driver provider and version before updating or rolling back.

When to consider professional help or replacement

  • If the Wi‑Fi/Bluetooth adapters are not detected at all in Device Manager after driver reinstall, and external adapters work, the internal module is likely faulty — contact vendor support or a technician.
  • If the issue started after a major Windows update and persists despite SFC/DISM/System Restore, and vendor support can’t resolve it, consider a repair install of Windows (in‑place upgrade) or a system reset.

Common related troubleshooting scenarios (quick answers)

Why is Airplane Mode greyed out?

  • Typically caused by disabled radio services, missing drivers, or a policy/configuration (corporate group policy). Check Device Manager, Services, and any group policies.

How can I force Airplane Mode off via command line?

  • You cannot directly toggle Airplane Mode with a single documented Microsoft CLI command, but you can re‑enable wireless adapters:

Enable-NetAdapter -Name “Wi‑Fi” -Confirm:$false

Also ensure relevant services are running and registry state is correct.

Will a network reset delete my files?

  • No, Network reset removes and reinstalls network adapters and clears network settings; it does not remove personal files. You will need to reconnect to Wi‑Fi networks.

Airplane Mode stuck after Windows update — what should I do?

  • Try rolling back the wireless driver, run SFC/DISM, use System Restore if available, or reinstall the vendor driver. If company-managed, check with IT for group policy changes.

Can a hardware switch cause this problem?

  • Yes. A hardware switch or Fn + key can override software toggles. Always verify physical status indicators and BIOS settings.

Conclusion

If you see that Airplane Mode doesn’t work in Windows 10, follow a structured approach: start with simple restarts and physical switch checks, then move to Device Manager driver reinstall, Windows troubleshooters, network reset, SFC/DISM repair, service checks, and — with caution — registry fixes. Most issues are resolved by driver updates or restarting the radio management services; hardware replacement is rarely required unless the adapter is not detected at all. Implement the prevention tips to minimize recurrence.

About the author

Jeffrey Collins

Jeffrey Collins

Jeffery Collins is a Microsoft Office specialist with over 15 years of experience in teaching, training, and business consulting. He has guided thousands of students and professionals in mastering Office applications such as Excel, Word, PowerPoint, and Outlook. From advanced Excel functions and VBA automation to professional Word formatting, data-driven PowerPoint presentations, and efficient email management in Outlook, Jeffery is passionate about making Office tools practical and accessible. On Softwers, he shares step-by-step guides, troubleshooting tips, and expert insights to help users unlock the full potential of Microsoft Office.