How to Fix a Constant Blue Busy Cursor on Windows 11 Caused by ASUS Precision Touchpad Center (AsusPTPCenter.exe): A Complete Technical Case Study

A constantly spinning blue "Working in Background" cursor in Windows 11 can be one of the most frustrating issues for users. Although the computer continues to function normally, the cursor continuously displays the blue loading circle, creating the impression that Windows is constantly processing something.

Many users initially suspect Microsoft Defender Antivirus (MsMpEng.exe) because Task Manager often shows noticeable CPU usage by the Antimalware Service Executable. However, as this case study demonstrates, Defender may only be a secondary process, while the real culprit is a completely different background application.

Advertisement

This article documents a real-world troubleshooting session in which the issue was successfully diagnosed and permanently identified.


Symptoms

The affected Windows 11 laptop exhibited the following behavior:

  • Blue spinning circle attached to the mouse cursor continuously.
  • Cursor remained in "Working in Background" state even while the system was idle.
  • Windows Explorer functioned normally.
  • Applications opened and closed without delay.
  • System remained responsive.
  • CPU usage frequently reached between 50% and 80%.
  • Task Manager showed Microsoft Defender consuming noticeable CPU resources.
  • Restarting Windows Explorer did not resolve the issue.

Initial Suspect: Microsoft Defender

The first observation showed:

  • Antimalware Service Executable (MsMpEng.exe) consuming nearly 50% CPU.
  • Windows Security was enabled.
  • No malware detections were present.
  • No Full Scan was running.

PowerShell verification:

 
Get-MpComputerStatus | Select AntivirusEnabled,RealTimeProtectionEnabled,QuickScanStartTime,FullScanStartTime
 

Result:

  • Defender Enabled
  • Real-Time Protection Enabled
  • No active Full Scan

Threat detection check:

 
Get-MpThreatDetection
 

Result:

No threats detected.


Checking Defender Version

Next, Defender versions were verified.

 
Get-MpComputerStatus |
Select AMServiceVersion,
AntivirusSignatureVersion,
AntispywareSignatureVersion,
NISEngineVersion
 

Output confirmed:

  • Latest engine
  • Latest signatures
  • Healthy installation

Therefore outdated Defender definitions were ruled out.


Attempted Fixes

The following troubleshooting steps were performed:

Restart Windows Explorer

 
taskkill /f /im explorer.exe
start explorer.exe
 

Result:

No improvement.


Added Microsoft Defender Exclusions

 
Add-MpPreference -ExclusionPath "$env:LOCALAPPDATA\Google\Chrome\User Data"

Add-MpPreference -ExclusionPath "$env:LOCALAPPDATA\Microsoft\Edge\User Data"

Add-MpPreference -ExclusionProcess "chrome.exe"

 

Purpose:

Reduce unnecessary browser cache scanning.

Result:

Busy cursor still remained.


Reviewing Defender Event Logs

PowerShell:

 
Get-WinEvent -LogName "Microsoft-Windows-Windows Defender/Operational" -MaxEvents 20
 

Observed Events:

Event ID 5007

Initially appeared suspicious.

Detailed investigation revealed:

  • New Chrome exclusions
  • Updated Defender signatures
  • Configuration hash changes

These were expected events caused by administrative changes.

Therefore Event ID 5007 was not the root cause.


Using Process Explorer

Microsoft Sysinternals Process Explorer was used for deeper analysis.

Initial findings:

  • MsMpEng.exe approximately 18% CPU
  • WhatsApp Desktop approximately 18% CPU
  • Process Explorer approximately 14%
  • Overall CPU approximately 78%

A later observation showed:

  • System Idle Process approximately 43%
  • WhatsApp.Root.exe approximately 21%
  • MsMpEng.exe approximately 9%

This proved:

  • Defender was no longer consuming excessive CPU.
  • The processor still had significant idle time.
  • CPU usage alone could not explain the continuously spinning cursor.

Identifying the Real Cause

Process Explorer revealed another ASUS background process:

 
AsusPTPCenter.exe
 

Also displayed as:

 
ASUS Smart Gesture Center
 

or

 
ASUS Precision Touchpad Center
 

Final Diagnostic Test

The following process was terminated:

 
AsusPTPCenter.exe
 

Immediately afterward:

  • Blue spinning cursor disappeared.
  • Cursor returned to normal.
  • Windows continued functioning perfectly.
  • No restart required.

This confirmed the root cause.


Root Cause

The continuous busy cursor was caused by:

ASUS Precision Touchpad Center (AsusPTPCenter.exe)

Not by:

  • Windows Explorer
  • Microsoft Defender
  • Windows Update
  • Search Indexer
  • Explorer Shell
  • Disk activity

Microsoft Defender CPU usage observed earlier was only incidental and not responsible for the permanent busy cursor.


Permanent Solutions

Solution 1 (Recommended)

Update the ASUS Precision Touchpad driver directly from ASUS Support.


Solution 2

Disable:

 
AsusPTPCenter.exe
 

from Startup Apps.


Solution 3

If Windows Precision Touchpad works correctly:

Uninstall:

  • ASUS Smart Gesture
  • ASUS Precision Touchpad Center

Windows will generally continue using Microsoft's built-in Precision Touchpad driver.


Solution 4

Reinstall the latest ASUS touchpad package.


Useful PowerShell Commands

Check Defender status:

 
Get-MpComputerStatus
 

Check threats:

 
Get-MpThreatDetection
 

Check Defender version:

 
Get-MpComputerStatus |
Select AMServiceVersion,
AntivirusSignatureVersion,
AntispywareSignatureVersion
 

Restart Explorer:

 
taskkill /f /im explorer.exe
start explorer.exe
 

Add Chrome exclusion:

 
Add-MpPreference -ExclusionPath "$env:LOCALAPPDATA\Google\Chrome\User Data"
 

Add Edge exclusion:

 
Add-MpPreference -ExclusionPath "$env:LOCALAPPDATA\Microsoft\Edge\User Data"
 

Exclude Chrome process:

 
Add-MpPreference -ExclusionProcess "chrome.exe"
 

List mouse devices:

 
Get-PnpDevice -Class Mouse
 

Diagnostic Tools Used

  • Process Explorer (Sysinternals)
  • PowerShell
  • Windows Event Viewer
  • Windows Defender Logs
  • Task Manager
  • Windows Security
  • Microsoft Defender Operational Logs

Lessons Learned

  • High CPU usage does not always indicate the root cause.
  • Microsoft Defender is often blamed incorrectly.
  • Process Explorer provides far deeper visibility than Task Manager.
  • Event ID 5007 is commonly generated after legitimate Defender configuration changes.
  • Touchpad utilities can continuously request the "Working in Background" cursor.
  • Always isolate background processes before disabling Windows components.

Final Resolution

After extensive troubleshooting, the issue was conclusively traced to AsusPTPCenter.exe (ASUS Precision Touchpad Center).

Terminating this single process immediately restored the normal mouse pointer, while Microsoft Defender continued functioning normally. Updating, disabling, or reinstalling the ASUS touchpad software provides the most effective long-term solution.

This case demonstrates the importance of systematic troubleshooting. Rather than assuming Microsoft Defender was responsible because of temporary CPU usage, analyzing processes, reviewing Defender logs, and isolating third-party background utilities led to the actual root cause and a clean, reliable resolution. 

 

Windows 11, blue busy cursor, spinning cursor, working in background, AsusPTPCenter, ASUS Precision Touchpad, ASUS Smart Gesture, Microsoft Defender, Antimalware Service Executable, MsMpEng.exe, high CPU, Windows troubleshooting, cursor always busy, touchpad driver, ASUS driver, Windows cursor fix, Process Explorer, Sysinternals, Task Manager, Event Viewer, Event ID 5007, Defender logs, Windows Security, PowerShell, Get-MpComputerStatus, Get-MpThreatDetection, Add-MpPreference, Chrome exclusion, Edge exclusion, Explorer restart, taskkill explorer, Windows Explorer, desktop issue, mouse pointer, Sumeet Kohli, Shally Narang, loading cursor, Windows performance, CPU usage, background process, startup apps, Windows optimization, driver conflict, HID driver, Precision Touchpad, Smart Gesture Center, system diagnostics, Windows utilities, troubleshooting guide, case study, performance analysis, Windows support, laptop issue, ASUS laptop, Windows repair, process monitoring, Resource Monitor, Process Monitor, Defender exclusions, security intelligence, antivirus troubleshooting, Windows admin, IT support, desktop support, helpdesk, Windows maintenance, system health, software conflict, cursor blinking, Windows bug, input driver, touchpad utility, Windows services, startup optimization, background tasks, shell troubleshooting, mouse issue, pointer problem, IT engineer, enterprise support, technical guide, Windows tools, CPU diagnostics, Microsoft tools, system repair, application conflict, cursor diagnosis, Windows 11 fix, Defender CPU, antivirus optimization, process analysis, ASUS utility, desktop responsiveness, troubleshooting workflow, Windows administration, performance tuning, software debugging, endpoint support, system optimization, Windows case study, Bison Infosolutions

 

Advertisement