Share via

TCP/IP Application services issue

Loui 0 Reputation points
2026-03-23T09:43:27.0166667+00:00

Hi all,

Since recently, sometimes the "TCP/IP Application services" process just uses my GPU to 100%.

I have tried the solutions shared here with the computer rebooted in safe mode. However, when i restart normally, this process starts and it peaks my GPU into 100%.

Is there any support i can get to understand what is going on? I feel that there is a virus in my computer but the nothing cant find it.

Thanks in advance.

Windows for home | Windows 11 | Performance and system failures
0 comments No comments

3 answers

Sort by: Most helpful
  1. TaoLi 73,940 Reputation points Independent Advisor
    2026-03-24T16:47:11.7966667+00:00

    Hello, thank you for your reply.

    Open Device Manager, locate and uninstall the graphics card driver, and check the box to remove the driver.

    After uninstalling, restart your computer and download the corresponding graphics card driver from the graphics card manufacturer's official website.

    Reinstall the graphics card driver to see if the problem is resolved.


  2. TaoLi 73,940 Reputation points Independent Advisor
    2026-03-23T13:17:26.0466667+00:00

    Hello,

    Please open Task Manager, expand the TCP/IP process, and then send me a screenshot so I can see the situation. Thank you.

    User's image


  3. Q&A Assist
    2026-03-23T09:43:53.65+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    The behavior described (system process related to TCP/IP suddenly consuming resources and suspicion of malware) matches known cases where networking components or related counters misreport usage, or where a networking stack issue causes abnormal resource consumption.

    From the provided information, the closest documented pattern is:

    • Networking/TCPIP-related components can hit bugs that cause hangs, high resource usage, or misleading counters (for example, Winsock/TCPIP race conditions and GPU/memory counters reporting incorrect values).
    • On affected Windows 10/11 systems, Task Manager’s per-process GPU/memory counters can show incorrect values, while the actual usage (seen in the Performance tab or with Windows Performance Recorder/Analyzer) is normal.

    To narrow down whether this is a real load or just a reporting issue, and whether it is likely malware or a system bug, follow these steps:

    1. Validate whether GPU usage is real or misreported
      1. Open Task Manager → Performance → GPU and watch the Dedicated GPU memory and 3D/Copy/Video Decode graphs while the “TCP/IP Application services” process shows 100% GPU in the Processes → GPU column.
      2. If the Performance pane shows normal/low GPU usage while the process list shows 100%, this matches the known counter issue. In that case, rely on the Performance pane, WPR, or WPA for accurate GPU usage instead of the per-process GPU column.
      3. If both the Performance pane and the process list show sustained high GPU usage, treat it as real load and continue with the next steps.
    2. Check for TCP/IP or Winsock-related hangs or leaks
      1. Open an elevated PowerShell window and run:
              Get-NetTCPConnection | Group-Object -Property State, OwningProcess | \
                Select-Object Count, Name, @{Name="ProcessName";Expression={(Get-Process -PID ($_.Name.Split(',')[-1].Trim(' '))).Name}}, Group | \
                Sort-Object Count -Descending
        
        This helps identify if any process is leaking TCP connections (for example, many connections stuck in CLOSE_WAIT or BOUND states).
      2. If a non-system process is responsible (for example, a browser, game, or third‑party app), close or uninstall that app and see if the GPU spike stops.
    3. Look for handle/port leaks that can indicate a faulty or malicious app
      1. Open Task Manager → Details.
      2. Add the Handles column.
      3. Sort by Handles and look for a process (other than core system processes like System, lsass.exe, sqlservr.exe) with an unusually high and growing handle count (often >3000).
      4. If such a process exists, end that process and see whether the GPU spike and any networking issues stop. If they do, uninstall or update that application.
    4. Check for known TCP/IP driver issues
      1. Ensure Windows is fully updated, as several TCP/IP bugs (including race conditions in tcpip.sys and WFP/Winsock issues that cause hangs and resource problems) have been fixed via updates.
      2. If the issue started immediately after a Windows update or driver change, check Settings → Windows Update → Update history to see what changed around that time.
    5. Malware suspicion and next steps
      • Because the symptoms can also be caused by malware that hooks into networking, continue to:
        • Run a full scan with Windows Security and a reputable antimalware tool.
        • If scans are clean but symptoms persist, consider an in‑place repair or reset of Windows while keeping personal files, as documented in the Windows reset guidance in the context.

    If, after verifying with the Performance pane/WPR/WPA, the GPU usage is only misreported and the system otherwise behaves normally (no overheating, no lag, no crashes), this is likely the known GPU counter issue rather than a virus. In that case, use the Performance pane or WPR/WPA to monitor GPU usage instead of relying on the per‑process GPU column.


    References:

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.