A Windows 11 workstation hosting a local service experiences severe performance degradation every morning. A technician opens Resource Monitor to inspect system metrics and notes that Physical Memory utilization is at , the Disk Queue Length on the system volume continuously fluctuates between and , and the system's total Commit Charge () far exceeds the installed physical RAM (). Further analysis reveals that a background synchronization process (`DataSync.exe`) exhibits a steadily growing private byte count over several hours without releasing memory. Which of the following is the most appropriate step to resolve the root cause of this system degradation?
- Apply a software update or patch to resolve a memory leak within the DataSync.exe application.Answer
- BExpand the maximum paging file size in System Properties to accommodate the growing Commit Charge.
- CAdjust Processor Scheduling in Performance Options to optimize performance for Background Services.
- DExecute the chkdsk /f command from an elevated prompt to clear the elevated disk queue length.
Answer
Apply a software update or patch to resolve a memory leak within the DataSync.exe application.
The combination of high commit charge exceeding physical memory, high disk queue length due to constant pagefile reading/writing (thrashing), and a steadily rising private byte count for a single process indicates a classic memory leak in that process. Patching or updating the process addresses the underlying fault.
Step-by-Step Solution
Key Concept
Identifying application memory leaks and distinguishing root cause remediation from symptom mitigation during virtual memory thrashing.
Estimated Time:2m 0s