by Admin » Mon Aug 31, 2026 5:17 am
The biggest clue is the Windows build:
26100.9278 = Windows 11 24H2 with KB5120998, an optional preview update released 27 August 2026. The first report was 30 August. Microsoft says the update includes File Explorer changes and, at present, lists no known issues for the update.
The c0000005 exception is an access violation. shcore.dll is a Windows shell DLL, but seeing it as the faulting module doesn't prove Windows itself is solely responsible: an Explorer shell extension can corrupt or pass bad state and the eventual fault can occur inside shcore.dll.
BRU's "Bulk Rename Here" is indeed implemented as an Explorer shell extension/context-menu handler (BRUMenuHandler), so it runs code in the Explorer context.
BRU itself then continuing to work perfectly is quite consistent with the shell-extension portion causing Explorer to die while starting BRU.
I'd test these in this order:
Check Update History for KB5120998. If it was installed just before the problem began, temporarily uninstall KB5120998, restart, and try exactly the same troublesome folder again. Microsoft documents the path as Settings > Windows Update > Update history > Uninstall updates.
Because KB5120998 is explicitly a preview/non-security update, this is a particularly useful A/B test.
Check the BRU version. The current release is 4.1.0.1. If an older version is installed, upgrade before doing much more troubleshooting.
If removing KB5120998 doesn't change anything, disable the BRU Explorer extension temporarily. BRU's installer allows installation without “Install Windows Explorer Extension.” An official-forum recommendation for removing the context-menu item is to reinstall with that option deselected.
If Explorer immediately becomes reliable, you've isolated it to BRU's shell handler or an interaction involving it.
Also test other Explorer-modifying software. ExplorerPatcher is especially worth checking if installed: a previous BRU crash report was traced by BRU's administrator to ExplorerPatcher.amd64.dll, and removing/reinstalling ExplorerPatcher fixed that user's problem.
Microsoft's Autoruns can also enumerate Explorer shell extensions, making it useful for temporarily disabling third-party handlers one at a time.
I would not spend much time yet investigating why folders containing files seem more likely to trigger it. That's useful reproduction information, but the striking Aug 27 -> Aug 30 timing makes KB5120998 the first thing I'd eliminate.
If uninstalling KB5120998 makes the crash disappear, that would be a very strong result to post back to the BRU thread: “Rolling back from 26100.9278/KB5120998 fixes it.” If it still crashes on the previous Windows build, I'd next focus on BRUHere64.dll/BRUMenuHandler and other Explorer extensions.