How to Identify a Driver Causing DPC Latency Spikes With LatencyMon on Windows 11

Audio crackling, video stuttering, or mouse lag during demanding tasks on Windows 11 often point to high Deferred Procedure Call latency. DPC latency spikes occur when a hardware driver takes too long to complete a low-priority task, blocking the system from responding to real-time audio or video data. LatencyMon is a free tool that measures … Read more

Why CoreWindow.exe Leaks Memory After Long Display Sleep on Windows 11

Quick fix: CoreWindow.exe handles UWP app windows. Long display sleep periods can leave its working set holding references to objects that should be released. Restart Explorer (which also restarts CoreWindow) via Task Manager, or call (Get-Process -Name CoreWindow).Refresh() in PowerShell to trigger garbage collection. You leave the PC running but with display off for several … Read more

How to Cap a Specific Process to a Set of CPU Cores Using PowerShell

You want to restrict a specific application or service to use only certain CPU cores on Windows 11 or Windows 10. This is often necessary when a background process monopolizes processor resources or when you need to ensure a critical application gets dedicated core access. Windows includes a built-in tool called the Processor Affinity mask … Read more

Fix Defender Real-Time Protection Slowing Folder Operations in Windows 11

When you open a folder with many files or run a script that processes hundreds of documents, Windows 11 may become unresponsive for several seconds. The folder contents appear slowly, and file operations like copy, move, or delete take much longer than expected. This slowdown is often caused by Microsoft Defender Antivirus scanning every file … Read more

Why Search Indexer Re-Indexes Everything After a Cumulative Update

Quick fix: A cumulative update that touches the Search Indexer service version triggers a full schema upgrade, which forces a re-index. The first re-index after the update is unavoidable; subsequent ones aren’t. Set Find My Files: Classic instead of Enhanced in Search settings to reduce the indexed surface area and shorten future re-indexes. You apply … Read more

Fix Modern Standby Draining Battery Faster Than Sleep on Windows 11

Quick fix: Modern Standby keeps networking, push notifications, and some background activity on while “sleeping.” A misbehaving app or driver can prevent the system from entering DRIPS (low-power Modern Standby) at all. Run powercfg /sleepstudy, open the generated HTML, and check “Sessions ineligible for DRIPS” — the named process is your culprit. You close the … Read more

How to Trim a 24H2 Working Set Using PowerShell on Windows 11

Quick fix: Use (Get-Process -Name SomeApp).WorkingSet = 0 in PowerShell — this asks Windows to trim the working set of the named process, pushing unused pages to standby. The .NET wrapper calls the same EmptyWorkingSet API used by RAMMap. Memory pressure on Windows 11 24H2’s revised memory manager benefits more from working set trimming than … Read more