Complete Guide: How to Fix Task Manager Not Showing Network Usage

Step-by-Step Solutions for Windows 10 & 11 Network Monitoring Issues

⚡ 10+ Proven Fixes
🛠️ Beginner to Advanced
✅ 100% Working Methods
📅 Updated: January 2026

Understanding the Task Manager Network Issue

When Task Manager fails to display network usage, you lose visibility into which applications are consuming bandwidth, monitoring connection speeds, and troubleshooting network-related performance problems. This common Windows issue can stem from multiple sources.

Task Manager
Performance
Processes
Startup
Network Performance Data Not Available

Quick Fixes

Simple solutions that work in 2 minutes

🔄

Driver Solutions

Update, reinstall, or fix network drivers

⚙️

Service Fixes

Restart essential Windows services

🔧

Advanced Methods

Registry edits & system file repairs

⚠️ Important: Before You Begin

Check your Windows version: Solutions may vary between Windows 10 and Windows 11. Most methods work for both, but some steps differ.

Create a restore point: Before making system changes, create a restore point as a safety net. Type “Create a restore point” in Windows search and follow the prompts.

Backup important data: While these fixes are generally safe, it’s always good practice to backup critical files.

Part 1: Quick Fixes (5 Minutes or Less)

1

Restart Task Manager & Network Adapter

The simplest solutions that fix the issue 30% of the time.

1
Restart Task Manager
2
Toggle Network Adapter
3
Check Results

Method A: Restart Task Manager

1 Close Task Manager completely:

Right-click Task Manager in taskbar → “Close window” or press Alt+F4 when focused

2 Restart with elevated privileges:

Right-click Start button → “Windows Terminal (Admin)” or “Command Prompt (Admin)” → Type: taskmgr and press Enter

Method B: Toggle Network Adapter

1 Open Network Connections:

Press Win+R → Type: ncpa.cpl → Press Enter

2 Disable then enable adapter:

Right-click your active network adapter → “Disable” → Wait 10 seconds → Right-click again → “Enable”

3 Check Task Manager:

Open Task Manager (Ctrl+Shift+Esc) → Go to Performance tab → Check if Network section appears

💡 Pro Tip: Keyboard Shortcut Method

For faster troubleshooting: Win+X → A (opens Admin Terminal) → Type: netsh interface set interface "Ethernet" admin=disable → Wait 5 seconds → Type: netsh interface set interface "Ethernet" admin=enable → Replace “Ethernet” with your adapter name.

2

Check Performance Monitor Settings

Windows Performance Monitor might be disabled or misconfigured.

This method fixes 25% of network monitoring issues

Step-by-Step Guide:

1 Open Performance Monitor:

Press Win+R → Type: perfmon → Press Enter

2 Check data collector sets:

Expand “Data Collector Sets” → “System” → Right-click “System Performance” → “Start”

3 Reset performance counters:

Open Admin Command Prompt → Type: lodctr /r → Press Enter → Restart computer

C:\Windows\system32> lodctr /r
Info: Successfully rebuilt performance counter setting from system backup store

⚠️ Warning: Performance Counter Corruption

If lodctr /r fails: You may have corrupted performance counters. Try: unlodctr /q followed by lodctr /q in Admin Command Prompt.

System file check: If issues persist, run: sfc /scannow to check for corrupted system files.

Part 2: Network Driver Solutions

3

Update Network Drivers

Outdated or corrupt network drivers are the #1 cause of Task Manager network issues.

Low Success Medium High Success

Method A: Automatic Driver Update

1 Open Device Manager:

Right-click Start button → “Device Manager”

2 Expand Network adapters:

Find your network card (Ethernet or WiFi) → Right-click → “Update driver”

3 Search automatically:

Select “Search automatically for updated driver software”

Method B: Manual Driver Installation

1 Identify your network adapter:

In Device Manager → Right-click adapter → Properties → Details tab → Property: “Hardware Ids”

2 Download from manufacturer:

Visit Intel, Realtek, Qualcomm, or Broadcom website based on your adapter

3 Install manually:

Run downloaded installer or use “Browse my computer for drivers” in Device Manager

4

Reinstall Network Adapter

Completely remove and reinstall network drivers to fix corruption.

Reinstallation Wizard

Step 1: Backup Current Drivers

Use DriverStore Explorer or export drivers from Device Manager before removal

Step 2: Uninstall Device

Device Manager → Network adapters → Right-click → Uninstall device → Check “Delete the driver software”

Step 3: Scan for Hardware Changes

Action menu → Scan for hardware changes → Windows will reinstall basic drivers

Step 4: Install Latest Drivers

Download latest drivers from manufacturer website and install

Driver Reinstallation Methods Comparison

Method Effectiveness Risk Time Required Best For
Standard Reinstall High Low 5-10 minutes Minor driver corruption
Clean Reinstall (with tool) Very High Medium 15-20 minutes Persistent issues
Rollback Driver Medium Very Low 2-3 minutes Recent update issues
Generic Driver Low Low 5 minutes Compatibility testing

💡 Pro Tip: Use Driver Removal Tools

Display Driver Uninstaller (DDU): Can remove network drivers in Safe Mode for complete cleanup

Intel Driver & Support Assistant: Automatically detects and installs correct Intel network drivers

Snappy Driver Installer: Open-source tool with extensive driver database, works offline

Part 3: Windows Service Solutions

5

Restart Essential Services

Windows services required for network monitoring might be stopped or disabled.

Critical Services for Network Monitoring

Services to Check and Restart:

Service Name Description Startup Type Action if Stopped
Network Connections Manages objects in Network Connections folder Manual Start service
Network List Service Identifies networks, collects/store network data Automatic Start and set to Automatic
Network Location Awareness Collects network configuration information Automatic Critical – Must be running
Performance Counter DLL Host Hosts performance counter DLLs Manual Start if Task Manager shows errors
Performance Logs & Alerts Collects performance data from local/remote computers Manual Start service

How to Restart Services:

1 Open Services Manager:

Press Win+R → Type: services.msc → Press Enter

2 Find and restart services:

For each service in table: Right-click → Properties → Startup type: Automatic → Click Start → Apply → OK

3 Alternative PowerShell method:
PS C:\> Get-Service NlaSvc, Netman, PerfHost | Restart-Service -Force
6

Reset Windows Performance Counters

Performance counters are essential for Task Manager’s network monitoring.

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\
PerfNet\Performance
“Disable Performance Counters” = 0 // Should be 0 (enabled)

Complete Counter Reset Procedure:

1 Stop performance services:
C:\Windows\system32> net stop “Performance Logs & Alerts”
C:\Windows\system32> net stop “Performance Counter DLL Host”
2 Rebuild counters from registry:
C:\Windows\system32> lodctr /R
C:\Windows\system32> cd /d %systemdrive%\Windows\System32
C:\Windows\system32> winmgmt /resyncperf
3 Restart services and computer:
C:\Windows\system32> net start “Performance Logs & Alerts”
C:\Windows\system32> shutdown /r /t 5

⚠️ Advanced: Manual Counter Rebuilding

If automatic methods fail: Delete all files in C:\Windows\System32\wbem\Repository → Reboot → Windows will rebuild WMI repository automatically. This is a last resort method that requires administrative privileges.

Part 4: Advanced System Fixes

7

System File Checker (SFC) & DISM

Repair corrupted Windows system files that affect network monitoring.

Choose Your Corruption Level

Select based on your issue severity:

😊 Mild Issues
😐 Moderate
😠 Severe
😡 Critical

Step 1: Run System File Checker

1 Open Admin Command Prompt:

Right-click Start → “Windows Terminal (Admin)” or “Command Prompt (Admin)”

2 Run SFC scan:
C:\Windows\system32> sfc /scannow
// This will take 15-30 minutes to complete

Step 2: Use DISM if SFC Fails

1 Check health with DISM:
C:\Windows\system32> DISM /Online /Cleanup-Image /CheckHealth
2 Restore health:
C:\Windows\system32> DISM /Online /Cleanup-Image /RestoreHealth
3 Restart and run SFC again:

After DISM completes, restart computer and run sfc /scannow again

8

Registry Fix for Network Performance Counters

Manual registry edit to enable network performance monitoring.

⚠️ CRITICAL WARNING

Backup registry first: Press Win+R → Type: regedit → File → Export → Save full registry backup

Incorrect edits can break Windows: Follow exactly as shown below

Registry Key to Check/Modify:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib
“Last Counter” = dword:00001194 // Should be a high number like 0x1194 (4500)
“Last Help” = dword:00001195 // Should be Last Counter + 1

Alternative: Rebuild Performance Registry Keys

1 Backup current perf registry:
C:\Windows\system32> reg export “HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib” perf_backup.reg
2 Rebuild from system files:
C:\Windows\system32> cd /d %systemroot%\system32
C:\Windows\system32> lodctr /R
C:\Windows\system32> wmiprvse /regserver

Part 5: Troubleshooting Flowchart & Final Solutions

9

Systematic Troubleshooting Flowchart

Follow this decision tree to diagnose and fix your specific issue.

Diagnostic Wizard

Step 1: Check Basic Functionality

Is your internet working? If NO → Fix network connection first

If YES → Does Task Manager show any performance tabs missing?

Step 2: Quick Diagnostic Commands
C:\Windows\system32> typeperf “\Network Interface(*)\Bytes Total/sec” -sc 1
// If this shows values, performance counters work
C:\Windows\system32> wmic path Win32_PerfRawData_Tcpip_NetworkInterface get Name
// Lists all network interfaces Windows detects
Step 3: Identify the Root Cause

Based on diagnostic results, choose appropriate fix from previous sections

Solution Effectiveness by Issue Type

Issue Type Best Solution Success Rate Time Required
Driver Corruption Clean driver reinstall 95% 15 minutes
Service Stopped Service restart & configuration 90% 5 minutes
Performance Counter Corruption lodctr /R & winmgmt reset 85% 10 minutes
System File Corruption SFC /scannow & DISM 80% 30-60 minutes
Registry Corruption Manual registry repair 75% 20 minutes
10

Final Resort: Network Reset & Windows Reinstall

When all else fails, these nuclear options will definitely work.

Severity: Will remove all network settings

Option A: Windows Network Reset

1 Access network reset:

Settings → Network & Internet → Advanced network settings → Network reset

2 Understand consequences:

This will remove and reinstall all network adapters, reset network configurations to default, and delete VPN connections

3 Execute reset:

Click “Reset now” → Confirm → Computer will restart in 5 minutes

Option B: Windows In-Place Upgrade

1 Download Windows ISO:

Download Windows 10/11 Media Creation Tool from Microsoft website

2 Run in-place upgrade:

Mount ISO → Run setup.exe → Choose “Keep personal files and apps”

3 Post-upgrade check:

After upgrade completes, check if Task Manager network monitoring works

💡 Pro Tip: Third-Party Alternatives

Process Explorer: Microsoft’s advanced Task Manager replacement with detailed network stats (part of Sysinternals Suite)

GlassWire: Excellent network monitoring with firewall features and beautiful interface

NetBalancer: Monitor and control network usage per application with advanced features

1 thought on “Complete Guide: How to Fix Task Manager Not Showing Network Usage”

Leave a Comment

Your email address will not be published. Required fields are marked *



Scroll to Top