Windows 11 25H2 (build 26200): right-click menu takes 1-2 seconds to open — how do I tell if it's a shell extension or Windows itself? Whose Fault?
Two machines on the same build here. On the older one the first right-click in File Explorer is consistently slow: I counted roughly a second and a half of nothing before the menu paints, then it's instant for the next few tries until it goes cold again. The second machine, same 26200 build, freshly imaged, opens instantly.
Specifics in case they matter:
- slow on both files and folders in a plain local folder
- right-clicking empty desktop is the fastest case
- "Show more options" is worse again, maybe another second on top of the first menu
- no third-party antivirus, just Defender
- survives a reboot, so it isn't one runaway process I can kill
I've seen the reporting going round about Microsoft rebuilding this menu to be faster and customisable, but that isn't something I can install today, and I'd rather know what is actually slow on my box.
Is there any way to attribute the delay to a specific handler — something that logs which one took how long — or is disabling extensions in halves genuinely the only method? I'd like to fix the cause rather than swap the menu for a different menu.
@obsolete_by_now · 2h ago · 3 replies
Split the problem in two before you touch anything, because Windows 11 has two menus and they don't load the same things.
The short menu surfaces commands from apps that register them the modern, packaged way. Old-style COM verbs — the ones every installer has been dumping into the shell for twenty years — get pushed down under "Show more options". So:
Then vary the target rather than the machine. Right-click a file in a plain local folder, then one inside a cloud-synced folder, then one on a mapped network drive. A sync provider or a half-dead mapped drive will stall the menu while the shell asks about status, and that has nothing to do with extensions at all. A mapped drive pointing at something that no longer exists is the classic: it blocks for the full SMB timeout, every single time.
You already said desktop is fastest and normal folders are slower, which reads more like per-item work than a global handler.
Reply
Report
@syncthing_soup · 2h ago
Seconding mapped drives. I chased a three-second menu for a week and it was a share on a NAS that had been decommissioned months earlier.
net uselisted it as Unavailable. Removed the mapping, menu instant.Reply
Report
@epsilon_eddie · 3h ago
Also vary the selection state: empty space in a folder, one selected file, then a multi-select of a couple of hundred files. Multi-select is where handlers that enumerate every item stop hiding.
Reply
Report