How to accurately measure Wi-Fi speed on a computer: from built-in tools to professional tests

Have you ever noticed that YouTube videos load jerkily, despite your ISP's 100 Mbps plan? Or that downloading files takes forever, even though your router promises "gigabit Wi-Fi"? The actual speed of a wireless network on a PC often differs from the stated speed. — and this could be due to either issues on the provider's end or hidden limitations of your equipment. In this article, we'll look at how accurately measure Wi-Fi speed on a Windows computer, without resorting to dubious "optimizers" from the Internet.

We've tested all current methods—from standard system tools to professional utilities—and identified their strengths and weaknesses. You'll find out why. speedtest.net It may be misleading, how distance to the router affects results, and what to do if speed drops on only one device. And at the end of the article, you'll find unique table of comparison of methods with recommendations for different scenarios (from diagnosing problems to fine-tuning the network).

Why is it important to test Wi-Fi speed on a PC?

Smartphones and tablets often smooth out real network problems through buffering and adaptive bitrate. A computer, however, shows raw data — and this is a key advantage for diagnostics. For example:

  • 📊 Measurement accuracy: On PC you can use professional utilities like NetSpeedMonitor or LAN Speed Test, which record speed with millisecond accuracy.
  • 🔧 Equipment diagnostics: Only on a computer can you check whether the network card (for example, an outdated adapter) is “cutting” the speed 802.11n instead of 802.11ac).
  • 🌐 Local network testingSmartphones typically only measure internet speed, while PCs allow you to evaluate the speed between devices on a home network (for example, when transferring files to a NAS).

Additionally, Windows provides built-in tools (eg. Task manager or PowerShell), which show actual bandwidth consumption According to protocols, this is impossible on mobile devices without root rights.

📊 How often do you check your Wi-Fi speed?
Once a month
Only when there are problems
Never checked
I constantly monitor

Method 1: Windows Task Manager (Quick Method)

The easiest way to find out current Wi-Fi speed - use built-in Task managerHe shows instantaneous speed data reception/transmission, but does not provide information on the maximum network throughput. Suitable for a quick visual check.

Instructions:

  1. Click Ctrl + Shift + Esc or Ctrl + Alt + Del → select "Task Manager".
  2. Go to the tab Performance.
  3. In the left menu, select Wi-Fi (or Wireless network in Windows 10).
  4. On the right side of the screen you will see graphs Receive speed (Rx) And Transmission speed (Tx) in megabits per second (Mbps).

⚠️ Attention: Task Manager shows current load, not your Wi-Fi's maximum speed. For example, if you're not downloading anything, the graph will be close to zero. To see the real numbers, run a speed test (for example, on speedtest.net) and monitor the peak values.

What do Rx and Tx mean?

Rx (Receive) — speed reception data (download), Tx (Transmit) - speed transmissions (sending). Most provider plans offer higher download (Rx) speeds than upload (Tx) speeds.

Method 2: Command Line (for advanced users)

If you need detailed connection information, including the encryption type, Wi-Fi frequency (2.4 or 5 GHz) and current connection speed, use Command lineThis method does not require installing third-party programs and works even without internet access.

Open Command line as administrator (click Win + X → "Terminal (Administrator)" and enter:

netsh wlan show interfaces

In the results, find the following lines:

  • Receive speed (Mbps) — the maximum theoretical speed of your connection.
  • Radio type — Wi-Fi frequency (802.11n usually means 2.4 GHz, 802.11ac/ax — 5 GHz).
  • SSID — the name of your network.

The "Receive Speed" indicator is higher than 150 Mbps (if it is lower, there is a problem with the router or adapter)

The radio type matches the frequency of your router (e.g. 5 GHz for 802.11ac)

The signal level (line "Signal") is above 70% (if below - weak signal)

-->

⚠️ Attention: Indicator Reception speed in the command line - this is maximum possible speed between your PC and the router, not the actual internet speed. For example, if the router supports 866 Mbps, and the team shows 433 Mbps, which means the signal is weakened by interference or distance.

Method 3: Online Speed ​​Tests (Pros and Cons)

Services like Speedtest.net, Fast.com (from Netflix) or Yandex Internetometer — the most popular verification method, but they have a number of limitations. The main ones are: They measure the speed to the provider's server, not the speed of your Wi-Fi.This means that if your provider is having problems, your results will be lower, even if your Wi-Fi is working perfectly.

How to use online tests correctly:

  1. Connect to the router via cable (Ethernet) and record the results.
  2. Connect via Wi-Fi and compare the results. If the difference is more than 30%, the problem is with your wireless network.
  3. Conduct the test at different times of the day (networks are usually overloaded in the evening).
  4. Use multiple services, such as speedtest.net And fast.com, as they use different algorithms.
Service Pros Cons When to use
Speedtest.net Shows ping, jitter, download/upload speed May select distant servers, lowering the results For a comprehensive test
Fast.com Minimalistic interface, tests streaming speed Doesn't show ping and upload speed To check before watching Netflix/YouTube
Yandex Internetometer Works even with a weak internet connection and shows test history Less accurate for high-speed connections For a quick check "on the go"

Method 4: Specialized utilities (for deep diagnostics)

If built-in Windows tools and online tests don't provide a complete picture, use professional utilities. They allow you to:

  • 📈 Monitor speed in real time (as opposed to "instant" tests).
  • 🔍 Identify interference from neighboring networks (frequency analysis).
  • 🖧 Test the local network (speed between PC and router).

Top 3 utilities for Windows:

  1. NetSpeedMonitorA lightweight program that displays speed in the system tray. Supports data logging.
    ⚠️ Attention: In Windows 10/11, you need to disable the built-in traffic counter in “Settings” → “Network & Internet” → “Data usage”, otherwise the readings will be inaccurate.
  2. LAN Speed TestTests the speed between two devices on a local network (e.g., a PC and a NAS). Ideal for checking home server performance.
  3. WiFi Analyzer (from Microsoft Store): Shows Wi-Fi channel load and helps you choose the optimal channel for your router.

For maximum accuracy, combine utilities. For example, use WiFi Analyzer to select a free channel, and then check the speed through LAN Speed Test.

Method 5: Testing via PowerShell (alternative to the command line)

PowerShell offers more flexible tools for network analysis than the classic command line. For example, it can be used continuously monitor speed or export the data to a file for further analysis.

To find out your current Wi-Fi speed, run:

(Get-NetAdapter | Where-Object {$_.MediaType -eq "Native 802.11"}).ReceivedBytes / 1MB

(Get-NetAdapter | Where-Object {$_.MediaType -eq "Native 802.11"}).SentBytes / 1MB

These commands will show the amount of data received and sent in megabytes. To convert this to speed (Mbps), run the command twice, 10 seconds apart, and use the following formula:

(New_value - Old_value) * 8 / 10

To automate monitoring, create a script:

$adapter = Get-NetAdapter | Where-Object {$_.MediaType -eq "Native 802.11"}

$start = Get-NetAdapterStatistics -Name $adapter.Name

Start-Sleep -Seconds 10

$end = Get-NetAdapterStatistics -Name $adapter.Name

$rxSpeed = ($end.ReceivedBytes - $start.ReceivedBytes) * 8 / 1024 / 1024

$txSpeed = ($end.SentBytes - $start.SentBytes) * 8 / 1024 / 1024

Write-Host "Receive Speed: $rxSpeed ​​Mbps"

Write-Host "Transfer Speed: $txSpeed ​​Mbps"

What to do if your Wi-Fi speed is slower than expected

If tests show that the speed is too low, follow this algorithm:

  1. Check your provider's tariff: Check your personal account or call to see what speed is included in your plan. Sometimes providers reduce speeds for technical reasons (for example, due to network congestion).
  2. Test on different devicesConnect your smartphone or another PC to the same network. If the speed is slow everywhere, the problem is with the router or ISP. If it's slow only on one device, its Wi-Fi adapter is at fault.
  3. Change Wi-Fi channel: Open your router settings (usually at 192.168.0.1 or 192.168.1.1) and select the channel with the least interference (use WiFi Analyzer for analysis).
  4. Update your drivers: Outdated Wi-Fi adapter drivers may limit speed. Download the latest drivers from the manufacturer's website (for example, for adapters Intel or Realtek).
  5. Check Wi-Fi standards: If your router supports 802.11ac (Wi-Fi 5), and the PC adapter is only 802.11n (Wi-Fi 4), maximum speed will be limited to ~150 Mbps.

⚠️ Attention: If you use USB Wi-Fi adapter, plug it into the port USB 3.0 (blue). Ports USB 2.0 limit the speed to ~480 Mbps, which can become a bottleneck for modern networks.

How do I find out the standard of my Wi-Fi adapter?

Open device ManagerNetwork adapters → Find the name of your Wi-Fi adapter (for example, Intel Wi-Fi 6 AX200). The first digits indicate the standard:

- 802.11n — Wi-Fi 4 (up to 600 Mbps)

- 802.11ac — Wi-Fi 5 (up to 3.5 Gbps)

- 802.11ax — Wi-Fi 6 (up to 9.6 Gbps)

Comparison chart of Wi-Fi speed testing methods

Method Accuracy Complexity When to use Restrictions
Task Manager Low (shows the current load) It's very simple For a quick check "by eye" Doesn't show maximum speed
Command line Average (maximum connection speed) Just For equipment diagnostics Doesn't take into account the actual internet speed
Online tests High (but depends on the server) It's very simple To check your internet speed Does not test local network
Specialized utilities Very high Average For in-depth diagnostics Requires software installation
PowerShell High (flexible scripts) Difficult To automate monitoring Knowledge of scripting is required.

The choice of method depends on your goal:

  • 🔍 Problem diagnosis: Use command line + specialized utilities.
  • 📊 Checking your provider's tariff: Online tests (speedtest.net).
  • 🖥️ Real-time monitoring: NetSpeedMonitor or PowerShell scripts.

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

Why is Wi-Fi speed slower than cable?

This is normal: wireless networks are subject to interference, and a cable provides a stable connection. A difference of up to 30% is considered acceptable. If the gap is larger, check:

  • Distance to the router (optimally up to 10 meters without obstacles).
  • Wi-Fi frequency (5 GHz is faster, but has poorer penetration through walls).
  • Wi-Fi adapter standard (obsolete) 802.11n limits speed).
How to check the speed between a PC and a router (without internet)?

Use the utility LAN Speed Test:

  1. Install the program on your PC.
  2. Enable it in your router settings. Samba server (or connect a USB drive to it).
  3. IN LAN Speed Test Specify the router's IP address as the target.
  4. Run the test - the program will show the data transfer speed within your network.

Normal values: from 300 Mbps for 802.11ac and above.

Can antivirus software affect Wi-Fi speed?

Yes, some antiviruses (for example, Kaspersky or Avast) scan traffic in real time, which can reduce speed by 10-20%. To check:

  1. Disable network protection in your antivirus settings.
  2. Repeat the speed test.
  3. If the speed has increased, add an exception for test connections.

⚠️ Don't disable your antivirus for long periods of time—it's dangerous!

What Wi-Fi speed is considered normal for different tasks?

Please be guided by these values:

  • 10-25 Mbps: Watch videos in 1080p, surfing, messengers.
  • 50-100 Mbps: 4K-streaming, online games, file downloading.
  • 200+ Mbps: Simultaneous streaming to multiple devices, work with cloud services.

If your speed is lower 10 Mbps, check your router and provider's tariff.

How can I find out who else is connected to my Wi-Fi and stealing speed?

Log into your router settings (usually at 192.168.0.1 or 192.168.1.1) and find the section DHCP Clients, Connected Devices or Wireless Mode → Client ListAll connected devices will be listed there with their MAC addresses.

If you find unfamiliar devices:

  1. Change your Wi-Fi password to a more complex one (use WPA3, if the router supports it).
  2. Enable MAC address filtering (but this is not a panacea - MAC addresses can be spoofed).
  3. Turn it off WPS - This protocol is vulnerable to hacking.