Many users, when building a computer or purchasing a pre-built system, face the need for a wireless network connection, but aren't always sure they have the necessary equipment. The question of how to find out if a motherboard has Wi-Fi is especially pressing when the system unit doesn't have external antennas, and documentation may be inconsistent. The absence of visible antennas on the rear panel doesn't necessarily mean the integrated module is missing—it may be hidden or simply disabled by software.
Modern motherboards Mid- and high-end devices are often equipped with integrated 802.11ac or 802.11ax network adapters. However, in budget solutions, manufacturers may leave space for an M.2 slot for a module but not install the module itself. Understanding the difference between the physical presence of hardware and its software visibility is key to successful diagnostics.
In this article, we'll cover software and hardware testing methods. You'll learn how to use operating system tools, the command line, and visual inspection to get an accurate answer. This will help you avoid unnecessary expenses on a USB adapter or PCIe card if the functionality is already built into your system.
Checking through Windows Device Manager
The fastest and most accessible way that does not require installing additional software is to use the standard Device ManagerThis operating system tool displays all connected hardware, even if drivers aren't installed. To get started, right-click the Start button and select the appropriate menu item, or use the keyboard shortcut. Win + X.
In the window that opens, find the "Network Adapters" section and expand it. If you see lines containing the words Wireless, Wi-Fi, 802.11 or brand names like Intel, Realtek, Qualcomm Atheros, which means the module is physically present. Sometimes the device may appear as "Unknown Device" with a yellow exclamation point—this indicates that the module is present, but the drivers are missing.
- 📡 Look for the abbreviations AC, AX, or the word Wireless in the adapter name.
- ⚠️ Note: If the adapter displays an error, try updating the drivers through Windows Update.
- 🔍 Hidden devices can be seen by enabling the display of hidden items in the View menu.
⚠️ Note: If the list of network adapters only includes an Ethernet controller (e.g., Realtek PCIe GBE Family Controller), this doesn't always mean there's no WiFi. The module may be disabled in the BIOS or physically missing from the board.
It's worth noting that in some cases, the built-in adapter may be disabled by the user. In this case, it may disappear from the main list and revert to the "Hidden Devices" section. To display them, click the "View" menu and select "Show Hidden Devices." If the module appears but is grayed out, right-click it and select "Enable."
Using the command line for diagnostics
For a more in-depth analysis of your network configuration, you can use built-in Windows utilities. The command line provides detailed information about the status of all network interfaces. This method is especially useful when the graphical interface is malfunctioning or crashing. Run the terminal as administrator to gain full access.
Enter the command netsh wlan show interfaces and press Enter. If the WiFi module is present and enabled, the system will display a detailed report: interface name, connection status, network SSID, radio module type, and signal strength. The presence of a "Status" field with a value of "Connected" or "Disconnected" confirms the physical presence. wireless controller.
C:\Users\User> netsh wlan show interfacesInterface name: Wi-Fi
Status: Disabled
SSID:
BSSID:
Network type: Infrastructure
...
If the module is physically missing or completely disabled at the BIOS level, the command will return a message stating that the wireless interface is not found. You can also use the command ipconfig /all, which will list all network adapters. Look for the line "Wireless Network" or "Wireless LAN adapter."
It's important to distinguish between a software error and a physical absence. If the command line reports an error with the WLAN AutoConfig service, this means the module is present, but the Windows service isn't running. Enter services.msc, find the "WLAN AutoConfig" service and make sure it is running and the startup type is set to "Automatic".
Analyzing characteristics via PowerShell
A more modern and flexible tool for system administrators and advanced users is PowerShell. It allows you to retrieve structured hardware data directly from WMI (Windows Management Instrumentation). This makes it possible to see even devices that might be hidden in the standard Device Manager.
Enter the following command into the PowerShell window: Get-NetAdapter | Where-Object {$_.InterfaceDescription -like"wireless" -or $_.InterfaceDescription -like"wifi"}This script will filter the list of adapters, leaving only those with keywords in their descriptions. If the list is empty, try expanding the search by removing the filter to see all available interfaces.
| PowerShell command | Description of action | Result with WiFi available |
|---|---|---|
Get-NetAdapter |
Display all network cards | Displays Ethernet and Wi-Fi |
Get-NetIPConfiguration |
IP address configuration | Shows active interfaces |
Get-CimInstance Win32_NetworkAdapter |
Full list of equipment | Shows even disabled devices |
Another powerful method is to use a class Win32_NetworkAdapter. Team Get-CimInstance Win32_NetworkAdapter | Select-Object Name, NetEnabled, PhysicalAdapter will show all adapters. Look for the words "Wireless" or "802.11" in the Name column. A PhysicalAdapter column with a value of True indicates a physical device, not a virtual adapter.
⚠️ Note: PowerShell is case-sensitive in some scripts, but core cmdlets are generally case-insensitive. If the commands don't work, check your PowerShell version and your administrator privileges.
PowerShell's advantage over the standard command line is its ability to export data. You can save a network status report to a text file for further analysis or to share with a specialist. This is especially useful for remotely diagnosing connection issues.
Visual inspection of the motherboard and case
Software methods don't always provide a 100% guarantee, especially if the system won't boot or the drivers are critically damaged. In such cases, a visual inspection comes in handy. The presence of a WiFi module is often (but not always) accompanied by threaded antenna connectors on the rear panel of the case, covered with plastic plugs.
If there are no covers, you'll have to look inside the system unit. Disconnect the power, remove the side panel, and inspect the motherboard. Look for small horizontal connectors, often labeled as J_WIFI or marked antennas. On many modern boards, the WiFi module is a small card in the format M.2 Key A+E, inserted into a special slot under the radiator or chipset.
- 🔌 Look for the antenna connectors on the back panel (gold-colored connectors).
- 🔍 Inspect the area around the chipset for a small board about the size of a fingernail.
- 📝 Find your motherboard model and check the specifications on the manufacturer's website.
The WiFi module often comes with antennas in the motherboard box. If you still have the box, check the contents. The board itself may also have markings indicating wireless support, such as a logo. Intel WiDi or an inscription Wi-Fi Ready.
Where is the WiFi module usually located?
Most often, the M.2 WiFi module is located horizontally under the chipset heatsink or at the bottom of the motherboard, next to the audio jacks. Sometimes it may be covered by a decorative shroud.
Pay attention to the motherboard model, which is usually written in large font on the PCB, for example, ASUS TUF GAMING B550-PLUSKnowing the exact model number allows you to avoid disassembling your computer by simply looking up the specifications online. This is the most reliable method if you don't want to break the warranty seals.
Checking your motherboard model online
The most reliable method, without requiring in-depth technical knowledge, is to search for the official specifications. Knowing the exact model of your motherboard, you'll get comprehensive information about its functionality in just a minute. You can find the model through the system (command msinfo32 in the line "Motherboard model") or by looking at the PCB.
Enter the model name into a search engine and go to the manufacturer's official website (ASUS, MSI, Gigabyte, ASRock). In the "Specifications" section, look for the "Network" or "Wireless" subsection. It will clearly state: "Wi-Fi 6 (802.11ax)" or "None." This the only way be absolutely sure of the factory configuration, since the module could have been removed or burned out by software.
When studying specifications, pay attention to the board's revision. Sometimes manufacturers release the same model in different revisions: one might have built-in WiFi, while another, cheaper model, might omit this module. The revision is usually indicated on the box or on a sticker near the memory slots.
⚠️ Please note: Specifications on websites may change. Always check the exact model and revision (Ver. 1.0, 1.1, etc.), as the components may vary between batches.
It's also helpful to read reviews on reputable technical resources. Journalists often take detailed photos of the board from all sides and indicate whether the WiFi module is soldered or the M.2 slot is empty. This will help you understand whether you can retrofit your board with a module yourself in the future.
☑️ Check specifications
Additional methods and use of third-party software
If the standard Windows tools don't seem informative enough, system diagnostic utilities can come to the rescue. Programs like AIDA64, HWiNFO or CPU-Z They collect detailed information about all computer components. In the "Network" or "DMI" section, they display a complete list of installed hardware.
In the program AIDA64 Go to Computer → Summary → Network. The adapter type will be listed there. If the WiFi module is present but not working, the program may show it as "Unknown Device" with the Vendor ID and Device ID. These codes can be checked in the PCI ID database to find the exact chip name.
Another method is to use bootable USB drives with Linux operating systems (such as Ubuntu Live USB). Linux often has a wider range of built-in drivers out of the box. If Linux detects WiFi networks when booting from a USB drive, the problem is definitely with the drivers or Windows settings, not a lack of hardware.
- 💻 Use AIDA64 to view hardware Vendor IDs.
- 🐧 Boot from a Linux LiveUSB to test the module's operation without Windows drivers.
- 🔗 Check hardware ID codes in the online PCI Database.
Please note that in some enterprise builds or laptops, the WiFi module may be blocked at the BIOS level by the administrator. In this case, no program will help until you access the BIOS/UEFI settings and enable the wireless module in the "Settings" section. Advanced → Onboard Devices Configuration.
Frequently Asked Questions (FAQ)
Is it possible to add WiFi to the motherboard if it doesn't have one?
Yes, there are two main ways. The first is to install a PCIe expansion card into an available slot (usually x1). The second is to install an M.2 WiFi module if the board has a corresponding Key A+E connector, even if it wasn't soldered in from the factory. A USB adapter is also always an option.
Why doesn't Device Manager see the WiFi adapter?
There could be several reasons: missing drivers, the adapter is disabled in the BIOS, the device is physically faulty, or it's hidden in the "Hidden devices" list. It's also possible that your motherboard model simply doesn't have a WiFi module installed.
Does the lack of antennas affect the operation of the built-in WiFi?
Yes, it's critical. Antennas (even the small plastic "horns" or wires inside the case) are essential for signal reception. Without them, the range will be a few centimeters, and a stable connection will be unavailable. If the device has connectors but no antennas, you'll need to purchase them separately.
How to distinguish Bluetooth from WiFi in Device Manager?
These are different devices, but they are often combined into a single physical module. In Device Manager, Bluetooth is usually found in a separate "Bluetooth" group or in "Network Adapters" under the label "Bluetooth Adapter." WiFi will be labeled "Wireless" or "802.11."