FIX STATUS_INVALID_IMAGE_HASH in Chrome: 5 Fixes (2026)
STATUS_INVALID_IMAGE_HASH is not a Chrome bug — your antivirus is injecting an unsigned DLL Chrome refuses to load. The registry fix takes 60 seconds.
Every tab dies on load, even chrome:// pages, right after an antivirus update, throwing Aw, Snap! Error code: STATUS_INVALID_IMAGE_HASH. Not malware, not a Chrome bug. Chrome’s renderer tried to load a DLL that failed signature verification, and Windows blocked it. The injector is almost always your antivirus. Update it, or set one registry value.
As of June 2026 (Chrome 149), this error is still live. Windows users report it after antivirus updates and Chrome auto-updates, the same pattern documented when Chrome introduced renderer code integrity in version 78. A May 2026 wave of “Aw, Snap” reports on Windows traced back to this exact mechanism. Nothing in recent Chrome releases removed the protection, so the fix below still applies.
Fix 1: Update Your Antivirus First
The crash happens because your antivirus injects a DLL into Chrome’s renderer that is not signed by Microsoft. Vendors fixed this by shipping properly signed DLLs. An outdated build is the single most common cause.
- Open your antivirus (Symantec, Kaspersky, McAfee, or whichever you run).
- Run its built-in update / “check for updates”.
- Reboot, then relaunch Chrome.
- If the crash stops, the signed DLL fixed it and you never have to touch the registry.
This is the correct fix. The registry edit below is the workaround for when the vendor has not shipped a signed build yet.
Fix 2: Disable RendererCodeIntegrity via Registry
If updating the antivirus did not help, you can tell Chrome to stop enforcing renderer code integrity. This lets the unsigned DLL load again, which removes the crash. It also removes a security layer, so treat it as temporary.
- Press
Win + R, typeregedit, press Enter. - Navigate to
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome. If theChromekey does not exist, right-clickPolicies, choose New > Key, and name itGoogle, then createChromeinside it. - Right-click in the right pane, choose New > DWORD (32-bit) Value, name it
RendererCodeIntegrityEnabled. - Leave its value at
0. - Close
regedit, fully quit Chrome, relaunch.
On Microsoft Edge, use the same steps with the path HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge instead.
Re-enable the protection (delete the value, or set it to 1) once your antivirus vendor ships a signed update. Leaving it off indefinitely keeps Chrome’s renderer open to DLL injection.
Quick Diagnosis: Which Cause Is Yours
| Symptom | Likely injector | Fix |
|---|---|---|
| Crash started right after an antivirus update or install | Antivirus DLL (Symantec / Kaspersky / McAfee) | Fix 1, then Fix 2 |
Every tab crashes immediately, even chrome:// pages | Code injected on startup | Fix 2 |
| Crash only after enabling a screen reader or IME | Accessibility / input DLL | Update that tool, then Fix 2 |
| Same crash in Edge too | Chromium-wide, shared mechanism | Apply the Edge registry path |
| Crash followed a Chrome update on managed PC | Group Policy + old agent | Fix 4 |
Fix 3: Test With a Clean Chrome Profile
A corrupt profile rarely causes this specific error, but it rules out a second variable before you blame the antivirus. The signature block is process-wide, so a clean profile that still crashes confirms the injector is the cause.
- Quit Chrome completely.
- Open
%LOCALAPPDATA%\Google\Chrome\User Data\in File Explorer. - Rename
DefaulttoDefault_Backup. - Relaunch Chrome. It builds a fresh profile.
- Still crashing? The profile is innocent. The injected DLL is the cause, so go to Fix 1 and Fix 2.
Fix 4: Check for the Injected Module
You can sometimes name the exact DLL Chrome is rejecting, which tells you which program to update or remove.
- Reproduce the crash, then on the “Aw, Snap” page note whether it lists a module.
- In Windows, open Event Viewer > Windows Logs > Application and look for an error logged against
chrome.exenear the crash time. - The faulting module name (often ending in
.dll) points to the responsible program. - Update or uninstall that program. If it is core antivirus, update rather than remove it.
On managed/work machines, this is frequently an endpoint-security agent pushed by IT. Send them the module name — they may have a signed build available.
Why This Error Exists at All
STATUS_INVALID_IMAGE_HASH is the visible symptom of a deliberate Chrome security boundary. Since Chrome 78, the RendererCodeIntegrity policy applies a Windows process-mitigation flag that tells the OS loader to refuse any binary not signed by Microsoft inside renderer processes. The renderer is where untrusted web content runs, so Google locked it against third-party code injection.
When antivirus, a screen reader, or an injection-based tool tries to load its DLL into that sandbox and the DLL is not Microsoft-signed, the loader rejects it. Chrome cannot continue with a half-loaded renderer, so the tab dies with this code. The “image” in the name is the executable image (the DLL); the “hash” is its signature check.
This is why the error is benign in origin: the thing being blocked is usually legitimate software, and the block itself is the protection. The fix is to make the injected code acceptable (update it so it is signed) or to lift the restriction (the registry value), not to scan for viruses.
When the Problem Is Too Many Injecting Extensions
The renderer-integrity block targets DLLs, not Chrome extensions — so an extension will not throw this exact code. But the broader lesson holds: every piece of software that injects into your pages is a crash vector. A page that loads ten content scripts from ten extensions has ten things that can fault.
SuperchargePerformance is a Manifest V3 extension. It never loads a DLL into Chrome and does its blocking through Chrome’s native declarative rules, so it adds no per-request JavaScript and no injected binary to the renderer. If part of your goal is a leaner, more stable Chrome with fewer moving parts running inside each page, consolidating onto fewer, cleaner extensions is the durable move. For this specific STATUS_INVALID_IMAGE_HASH crash, though, the registry fix above is what resolves it — no extension changes the antivirus DLL behavior.
If you run a single antivirus and the crash returns after every update, ask the vendor whether their current agent ships a Microsoft-signed renderer DLL. If they do not, keep RendererCodeIntegrityEnabled at 0 until they do, and re-enable it the moment they ship one.
Frequently Asked Questions
What does STATUS_INVALID_IMAGE_HASH mean in Chrome?
Is STATUS_INVALID_IMAGE_HASH a virus?
Which antivirus causes STATUS_INVALID_IMAGE_HASH?
How do I fix STATUS_INVALID_IMAGE_HASH permanently?
Does STATUS_INVALID_IMAGE_HASH affect Microsoft Edge too?
Will disabling RendererCodeIntegrity slow down Chrome?
Don't miss the next release
Be first to know when we ship something new.
Related Articles
FIX STATUS_ACCESS_VIOLATION in Chrome: 5 Solutions (2026)
STATUS_ACCESS_VIOLATION crashes Chrome with no warning. It's a memory access error, not malware. Extensions and GPU drivers cause 80% of cases. 5 tested fixes.
FIX STATUS_BREAKPOINT Chrome Error: 6 Tested Fixes (2026)
Error code: STATUS_BREAKPOINT is not a virus — a Chrome renderer hit an unexpected state. GPU drivers cause most cases. 6 tested fixes, fastest first (2026).
FIX Chrome Aw, Snap! Crash Error: 5 Fixes That Work (2026)
Aw, Snap crashes kill Chrome tabs without warning. RAM exhaustion causes 80% of them. Free idle tab memory and clear extension conflicts, fast to deep.
STOP Chrome Freezing on Windows 11: 9 Fixes (2026)
Chrome freezing on Windows 11 with 'Not Responding'? GPU drivers and tab overload are the usual culprits. 9 tested fixes, ranked by cause, no reinstall needed.