How to Find Out if Your PC Supports Wi-Fi: A Step-by-Step Guide for Windows and Linux

Have you bought a used computer or pulled an old system unit from storage, but aren't sure if it supports wireless networks? Or are you looking to upgrade your laptop but don't know what Wi-Fi module it has? This is a familiar problem for many, especially when it comes to desktop PCs, where a Wi-Fi adapter often has to be purchased separately.

In this article we will look at 7 reliable waysHow to determine if your device has a built-in Wi-Fi module - from a basic visual inspection to in-depth diagnostics through device Manager And command lineYou will learn how to distinguish a laptop with Wi-Fi from a model without it, what hardware signs indicate the presence of the module, and what to do if Windows "doesn't see" the wireless network. And for advanced users, here are instructions for checking via Linux and even without an operating system!

Spoiler: If your PC was released after 2015The chances of built-in Wi-Fi are 90% for laptops and 30% for desktops. But it's best to check for sure—read on.

1. Visual inspection: look for antennas and stickers

The quickest way is to carefully inspect the device's casing. Manufacturers often provide clues that indicate the presence of a Wi-Fi module.

What to look out for:

  • 📡 Stickers with logos: Look for icons on the back cover of your laptop or system unit Wi-Fi Alliance (wavy lines), Intel Wireless or Killer WirelessEven if the module is broken, the sticker will remain.
  • 🔍 Antenna wiresOn laptops, thin black or white wires are often visible under the lid, running from the screen to the motherboard—these are Wi-Fi antennas. On desktops, they may protrude from the PCI-e slot.
  • 🖥️ Antenna holes: On the back panel of boxed PCs, there are sometimes plastic "ears" with a metal mesh - these are connectors for external Wi-Fi adapter antennas.

⚠️ Attention: The absence of stickers does not guarantee the absence of Wi-Fi! Some manufacturers (for example, Dell or HP) save on marketing elements, but the module can be installed.

📊 Your PC is...
Laptop
Desktop computer
Monoblock
Mini PC (NUC, Mac Mini, etc.)

2. Checking via "Network Connections" in Windows

If you have Windows installed on your PC (from XP to 11), the easiest way is to look at the list of network adapters. Even if the drivers aren't installed, the system may detect the hardware.

Instructions:

  1. Click Win + R, enter ncpa.cpl and press Enter.
  2. The "Network Connections" window will open. Look for adapters with the following names:
    • 🌐 Wireless Network Connection (Windows 7/8)
    • 📶 Wi-Fi or Wireless network (Windows 10/11)
    • 🔌 Ethernet - This wired the network doesn't count!
  • If the adapter is there, but it is marked with a red cross, it means The driver is not installed or the module is disabled.
  • ⚠️ Attention: In some Windows builds (especially pirated ones), network adapters may be hidden. If the list is empty, but you're sure Wi-Fi should be there, try updating your hardware configuration. device Manager (see next section).

    Check the physical connection of the module (for desktops)

    Update drivers through Device Manager

    Install the driver from the official website of the PC manufacturer

    Try booting from a Linux LiveCD (see section 6)

    -->

    3. Device Manager: Deep Diagnostics

    device Manager — This is an "X-ray" of your PC. It displays all hardware components, even those for which drivers are missing. To open it:

    • Click Win + X and select "Device Manager"
    • Or click Win + R, enter devmgmt.msc and press Enter

    Next, expand the branch Network adaptersSearch for devices with the words: Wireless, Wi-Fi, 802.11 (Wi-Fi standard), AC (Wi-Fi 5), AX (Wi-Fi 6), as well as chip names:

    • 🔧 Intel (For example, Intel Wi-Fi 6 AX200)
    • 🔧 Qualcomm Atheros (For example, Qualcomm QCA61x4A)
    • 🔧 Broadcom, Realtek, Mediatek
    • 🔧 Killer Wireless (in gaming laptops)

    Device type in the Manager What does it mean Actions
    Adapter with name Wireless/Wi-Fi The module is installed and recognized by the system Check your drivers (update if necessary)
    Unknown device with an exclamation mark There is a Wi-Fi module, but the driver is missing. Download the driver from the PC or chip manufacturer's website
    The list only Ethernet adapter There is no Wi-Fi module or it is disabled by hardware. Check BIOS (section 4) or physical connection
    Adapter Microsoft Wi-Fi Direct Virtual Adapter This is a virtual device for Wi-Fi Direct, not a physical module. Look for another adapter in the list

    💡 Helpful advice: If there is an unknown hardware in Device Manager with ID PCI\VEN_168C or PCI\VEN_8086 - this is most likely a Wi-Fi module from Qualcomm Atheros or IntelCopy the ID, enter it into a search engine, and find the driver.

    4. Checking via BIOS/UEFI: hardware level

    If the Wi-Fi module is disabled at the BIOS level, Windows won't detect it. This is relevant for some laptops (especially those in the enterprise lineup). Lenovo ThinkPad or Dell Latitude), where wireless networks are blocked by default.

    How to enter BIOS and what to look for:

    1. Restart your PC and press the BIOS entry key (usually F2, Del, Esc or F12 - depends on the motherboard).
    2. Search sections:
      • 🔧 Advanced → Onboard Devices Configuration
      • 🔧 Wireless → Wireless LAN
      • 🔧 Security → I/O Port Access
  • The parameter can be called Wireless LAN Support, WLAN, Wi-Fi or Airplane ModeHe must be in position. Enabled.
  • ⚠️ Attention: In some BIOS the option is hidden. For example, in HP you need to turn it off first Fast Bootto unlock the Wi-Fi settings. If you don't find this setting, the module is most likely physically missing.

    What to do if there is no Wi-Fi option in BIOS?

    This means one of three things:

    1. The module is physically missing (typical for desktops).

    2. The module is built into the chipset (for example, in some Intel NUC), and it cannot be disabled separately.

    3. The manufacturer has hidden the option (rare, but it happens) ASUS or MSI).

    In the first two cases, check through Device Manager or Linux (section 6).

    5. Command line: checking without a graphical interface

    If you don't have access to a graphical interface (for example, on a server version of Windows) or prefer console commands, use these methods:

    Method 1: Team ipconfig

    ipconfig /all

    Look for adapters with types in the output Wireless network or Wireless LAN. Example:

    Wi-Fi Wireless LAN Adapter:

    Description. . . . . . . . . . . : Intel(R) Wi-Fi 6 AX200 160MHz

    Physical address. . . . . . : 00-11-22-AA-BB-CC

    Method 2: Team netsh

    netsh wlan show drivers

    If there is a Wi-Fi module, you will see information about the supported standards (for example, 802.11n/ac/ax). If the command returns an error "The WLAN AutoConfig service is not running" - try running it:

    net start WlanSvc

    Method 3: View devices via wmici

    wmic nic where "NetEnabled='true'" get Name, NetConnectionID, MACAddress

    This command will show all active network adapters with their MAC addresses. A Wi-Fi module usually has NetConnectionID with the word Wireless.

    6. Testing on Linux (including LiveCD)

    Linux is a great tool for hardware diagnostics, especially if Windows doesn't detect the Wi-Fi module. You can use the installed system or boot from LiveCD (For example, Ubuntu or Linux Mint).

    Step 1: Test Commands

    lspci | grep -i network

    This command will show all network devices connected via PCI (including Wi-Fi modules). Example output:

    03:00.0 Network controller: Intel Corporation Wi-Fi 6 AX200 (rev 1a)

    If the module is connected via USB (external adapter), use:

    lsusb

    Look for lines with Wireless, 802.11 or names of manufacturers (TP-Link, ASUS etc.).

    Step 2: Checking loaded kernel modules

    lsmod | grep -i wifi

    If the Wi-Fi module is recognized, you will see the loaded drivers (for example, iwlwifi For Intel or ath9k For Atheros).

    Step 3: View information about wireless networks

    iwconfig

    This command will display all wireless interfaces. The active Wi-Fi adapter will be marked as wlan0, wlp3s0 etc.

    💡 Helpful adviceIf Linux sees the Wi-Fi module, but Windows doesn't, the problem is definitely with the drivers. Download them from the official website of the laptop or chip manufacturer (don't use driver packs like DriverPack Solution - They often install outdated versions!).

    7. Physical inspection: disassembling the PC

    If software methods do not produce results, there is one last option - physical inspectionThis is relevant for desktop PCs, where the Wi-Fi module can be installed in a slot. PCI-e or M.2, as well as for laptops where the module is sometimes disabled (for example, in corporate devices).

    For laptops:

    1. Turn off the power and remove the battery.
    2. Unscrew the back cover (usually you need a Phillips screwdriver).
    3. Look for a small board about the size of an SD card - this is M.2 Wi-Fi moduleIt is usually located next to the RAM and is connected by two antenna wires.
    4. The module must be marked, for example:
      • 🏷️ Intel Wireless-AC 9560
      • 🏷️ Broadcom BCM4352
      • 🏷️ Qualcomm QCA9377

    For desktops:

    1. Open the side cover of the system unit.
    2. Look at the slots PCI-e (usually x1 or x4). The Wi-Fi adapter looks like a small board with antenna connectors on the back panel.
    3. If the slot is empty, but there is a hole for antennas on the back of the PC, it means that the adapter was once installed, but was removed.

    ⚠️ AttentionWhen disassembling a laptop, be careful with the antenna wires—they're fragile! If you damage the connector, you'll have to solder it or buy a new module. Desktops are less risky, but be careful with static electricity (it's best to use an anti-static wrist strap).

    FAQ: Frequently asked questions about checking Wi-Fi on a PC

    My PC can't see the Wi-Fi network, but the module is there. What should I do?

    The problem may be as follows:

    1. Drivers: Download them from the laptop/motherboard manufacturer's website. For Intel Use Wi-Fi official instrument.
    2. Hardware shutdown: Some laptops have a physical Wi-Fi switch (e.g. Lenovo — the button with the airplane). Also check the keyboard shortcut Fn + F2 (or another F-key with an antenna icon).
    3. Problems with antennas: If the module sees networks but does not connect, the antenna wire may be torn off.
    4. Conflict with VPN/antivirus: Disable them temporarily and check the connection.
    How do I know which Wi-Fi standard my module supports (Wi-Fi 4/5/6)?

    There are several ways:

    • 🔍 In Device Manager Double-click on the adapter → tab AdditionallyLook for properties with names Wireless Mode or 802.11n/ac/ax.
    • 📋 In the command line, run:
      netsh wlan show drivers

      Look for the line Radio type (For example, 802.11ac - this is Wi-Fi 5).

    • 🌐 View the module model (via device Manager or physically) and search for specifications on Google. For example, Intel AX200 supports Wi-Fi 6 (802.11ax).
    Is it possible to add Wi-Fi to a PC if it doesn't have one?

    Yes, and there are several options:

    • 🖥️ For desktops:
      • Buy PCI-e Wi-Fi adapter (For example, TP-Link Archer TX3000E for Wi-Fi 6).
      • Or M.2 Wi-Fi module (if there is a connector on the motherboard M.2 Key E).
    • 💻 For laptops:
      • Replace the module with a more modern one (for example, Intel AX210 instead of the old one Intel 7260).
      • Use USB Wi-Fi adapter (For example, ASUS USB-AX56 for Wi-Fi 6).

    ⚠️ Please check compatibility before purchasing:

    • For PCI-e adapters need a free line PCI-e x1.
    • For M.2 modules - connector Key E (not to be confused with Key M for SSD!).
    • USB adapters are universal, but can slow down at high speeds.
    Why can't my new PC see 5GHz networks?

    Possible reasons:

    1. Outdated Wi-Fi module: Standard 802.11n (Wi-Fi 4) only works on 2.4 GHz. For 5 GHz you need 802.11ac (Wi-Fi 5) or newer.
    2. 5 GHz support is disabled in the router settings.: Go to the router's web interface (usually 192.168.1.1) and check your wireless network settings.
    3. Regional restrictionsIn some countries (for example, in Russia until 2021), 5 GHz channels were limited. Update your router drivers and firmware.
    4. The driver does not support 5 GHz.: Download the latest version from the chip manufacturer's website.

    💡 To check supported frequencies in Windows, run:

    netsh wlan show drivers

    Look for the line Supported radio types. It must be specified 802.11a (5 GHz) and/or 802.11ac/ax.

    How to check Wi-Fi on a PC without an operating system?

    If your PC doesn't have Windows or Linux, but you need to find out if it has a Wi-Fi module, there are two ways:

    1. Visual inspection (see section 7): disassemble the PC and look for the module.
    2. Booting from a Linux LiveCD:
      • Download the image Ubuntu or Linux Mint from the official website.
      • Write it to a flash drive using Rufus or BalenaEtcher.
      • Boot from the flash drive (select boot from USB in BIOS).
      • In the terminal, run the commands from Section 6 (For example, lspci | grep -i network).

    ⚠️ If even Linux doesn't see the Wi-Fi module, it's either physically missing or damaged.