T The Triage ManualTechnical Guides for IT Emergencies
P3 · Endpoint & Device Management

Endpoint Performance Degradation — OneDrive Sync, Backup Agent, and AV/EDR Resource Contention on Windows 10/11

Corporate Windows 10/11 endpoints experience sustained high CPU, disk I/O saturation (often at 100%), and memory pressure when OneDrive for Business sync, an enterprise backup agent (Veeam, Acronis, Windows Server Backup), and an endpoint security tool (Microsoft Defender, CrowdStrike, Sophos) run concurrently without scheduling coordination or mutual exclusions. The three workloads compound one another: security tools scan files actively being written by OneDrive or staged by backup agents, causing recursive I/O amplification and process CPU spin. Resolution involves identifying the primary offending process via Task Manager and Resource Monitor, pausing or throttling OneDrive sync, rescheduling backup jobs to off-peak windows, and applying cross-tool exclusion paths to eliminate redundant scanning. Full resolution requires verification across at least one complete backup and scan cycle.

Indicators

Likely causes

Diagnostic steps

  1. Open Task Manager (Ctrl+Shift+Esc), navigate to the Processes tab, and sort by CPU, then Disk, then Memory in turn. Note the exact process name and PID of the top consumers — specifically watch for OneDrive.exe, MsMpEng.exe (Defender), SenseCnfgr.exe (CrowdStrike), and any backup agent process (e.g., VeeamAgent.exe, AcronisCyberProtect.exe).
    Quickly identify whether OneDrive, a backup agent, or a security tool is the primary contributor to resource exhaustion and narrow to a single process before deeper investigation.
  2. Open Resource Monitor (resmon.exe), go to the Disk tab, and observe the Disk Activity section. Sort by Total (B/sec) to identify which processes are generating the highest read/write throughput and which specific file paths (column: File) are being accessed.
    Determine whether disk I/O saturation originates from sync operations (OneDrive cache paths), backup staging (temp/scratch directories), or security scanning, and identify the exact directories involved for later exclusion configuration.
  3. Check OneDrive sync status by hovering over the OneDrive taskbar icon and reviewing the activity centre for pending file count and sync errors. If the UI is inaccessible due to system slowness, run in PowerShell: Get-Process -Name OneDrive | Select-Object CPU, WorkingSet, Id
    Confirm whether OneDrive is actively syncing a large backlog and quantify resource consumption attributable to the sync client specifically.
  4. Review Event Viewer (eventvwr.msc) under Windows Logs > Application and Windows Logs > System for warnings or errors from backup agent services and Windows Defender (source: Windows Defender). Cross-reference event timestamps with the onset of the reported slowness. Look for scan start/completion events, backup job initiation events, or application hang (Event ID 1002) entries.
    Correlate the onset of performance degradation with a scheduled or triggered backup job or security scan event to confirm the root cause and establish a timeline.
  5. Open Task Scheduler (taskschd.msc), navigate to the Task Scheduler Library, and review tasks associated with the backup agent and security tool. Check trigger times and Last Run Time to determine whether a task is firing during business hours. Also open the backup agent's own management console or local UI and review active/stuck job status and logs.
    Determine whether the resource consumption is from a scheduled task running at the wrong time or from a runaway job that has not completed, which determines whether rescheduling or job termination is the correct remediation.
  6. If Microsoft Defender is the deployed security tool, run in PowerShell: Get-MpComputerStatus and check the ScanType, FullScanAge, and QuickScanAge fields to confirm whether an active scan is running. For third-party tools (CrowdStrike, Sophos), consult the vendor management console or the local agent log directory for active scan state.
    Confirm whether an active security scan is currently contributing to the slowdown and establish when the last scan ran, to support rescheduling decisions.

Resolution path

Prevention

Tools

References

OneDrivebackup-agentendpoint-securityperformancedisk-iocpu-saturationantivirusEDRWindowssyncresource-contentionschedulingexclusionsMsMpEngCrowdStrikeSophosVeeamAcronistriage