How to Fix Error Code: STATUS_BREAKPOINT in Chrome and Edge

Disclosure: When you buy something through links on our site, we may earn an affiliate commission.

Almost always a hardware acceleration, memory, or extension issue — here’s how to clear it


The STATUS_BREAKPOINT error in Chrome or Edge — appearing as a full browser crash, a tab crash with the Aw Snap or similar error page, or a complete browser close — is one of those errors that looks alarming but almost always has a fixable cause.

STATUS_BREAKPOINT is a Windows exception code that means a breakpoint instruction was hit in the browser’s code — something the application isn’t supposed to encounter during normal operation.

Here’s what triggers it and how to resolve it.


What STATUS_BREAKPOINT Actually Means

In normal software development, a breakpoint is a debugging tool — a deliberate pause point a developer inserts to inspect code during testing.

In a production browser, hitting a breakpoint instruction means the code reached a state it wasn’t supposed to reach — typically triggered by a memory conflict, a hardware acceleration issue, a conflicting process, or a corrupted browser component.

The error appears in both Chrome and Edge because both are built on the Chromium engine and share the same underlying architecture — fixes that work for one generally work for the other.


Disable Hardware Acceleration

Hardware acceleration is the most common cause of STATUS_BREAKPOINT. Both Chrome and Edge use your GPU to accelerate page rendering by default. When the GPU driver is outdated, corrupted, or incompatible with the browser’s rendering engine, the conflict produces STATUS_BREAKPOINT crashes.

In Chrome: Go to Settings → System and toggle off Use Hardware Acceleration When Available. Restart Chrome completely and test.

In Edge: Go to Settings → System and Performance and toggle off Use Hardware Acceleration When Available. Restart Edge and test.

If the error stops after disabling hardware acceleration, update your GPU driver — covered below — and then try re-enabling hardware acceleration with the updated driver.


Update Your GPU Driver

An outdated or corrupted GPU driver is the underlying hardware acceleration cause. Updating the driver often resolves STATUS_BREAKPOINT without needing to permanently disable hardware acceleration.

Download the latest driver directly from your GPU manufacturer:

  • NVIDIA: nvidia.com/drivers
  • AMD: amd.com/support
  • Intel: intel.com/content/www/us/en/download-center

For NVIDIA and AMD, use DDU — Display Driver Uninstaller from guru3d.com for a clean driver installation. Boot into safe mode, run DDU to completely remove the existing driver, restart normally, and install the fresh driver. A clean install eliminates residual corrupted files that a standard update leaves in place.

Restart after installing and re-enable hardware acceleration in the browser to test whether the conflict is resolved.


Disable or Audit Extensions

Browser extensions are a significant cause of STATUS_BREAKPOINT — particularly extensions that inject code into web pages, modify browser behavior at a low level, or conflict with the browser’s security sandbox.

Test by opening Chrome or Edge in their respective private modes:

Chrome: Ctrl + Shift + N for Incognito Edge: Ctrl + Shift + N for InPrivate

Most extensions are disabled in private mode. If STATUS_BREAKPOINT stops occurring in private mode, an extension is causing it in your regular window.

Go to chrome://extensions or edge://extensions and disable all extensions. Test the browser. Re-enable extensions one at a time, testing after each, until the error returns. The last extension re-enabled is the cause — remove it or check for an updated version.


Clear Browser Cache and Data

Corrupted cached data can trigger STATUS_BREAKPOINT when the browser attempts to load corrupted files during page rendering. Clearing the cache forces the browser to fetch fresh data from servers.

Press Ctrl + Shift + Delete in either browser. Select Cached Images and Files and Cookies and Other Site Data. Set the time range to All Time and clear.

Restart the browser after clearing and test whether the error recurs.


Check for Conflicting Software

Certain applications conflict with Chrome and Edge at a low level, injecting code or intercepting processes in ways that produce STATUS_BREAKPOINT.

Antivirus software with deep browser scanning enabled can conflict with the browser’s own security mechanisms. Temporarily disable your antivirus’s web or browser scanning component — not the full antivirus — and test whether the error stops. If it does, add Chrome or Edge to the antivirus exclusions list.

Screen recording and capture software — OBS, Bandicam, GeForce Experience overlay, and similar tools — hooks into graphics processes in ways that can conflict with hardware acceleration in browsers. Disable these overlays and test.

Accessibility software sometimes injects into browser processes. If you have screen readers or accessibility tools installed, test the browser with them disabled.


Update Chrome or Edge

Running an outdated browser version can mean running known bugs that have been fixed in newer releases. STATUS_BREAKPOINT has been associated with specific browser version bugs that subsequent updates patched.

Chrome: Three-dot menu → Help → About Google Chrome — updates automatically from this page.

Edge: Three-dot menu → Help and Feedback → About Microsoft Edge — same process.

Restart the browser after updating and test.


Check Your RAM

Faulty RAM is a less common but genuine cause of STATUS_BREAKPOINT — memory errors cause corruption that browsers can’t handle gracefully, producing unexpected crashes and exception codes.

Run Windows Memory Diagnostic: press Windows + R, type mdsched.exe, select Restart Now and Check for Problems. The test runs before Windows loads and reports any memory errors.

For a more thorough test, download MemTest86 from memtest86.com, create a bootable USB, and run a full pass. Any errors detected indicate faulty RAM that needs replacement.


Run the Browser with No Sandbox (Diagnostic Only)

This is a diagnostic step rather than a permanent fix — running Chrome without its sandbox helps identify whether the sandboxing mechanism itself is contributing to the error.

Right-click the Chrome shortcut and select Properties. In the Target field, add –no-sandbox at the end of the path (after the closing quote):

"C:\Program Files\Google\Chrome\Application\chrome.exe" --no-sandbox

Launch Chrome using this modified shortcut and test. If STATUS_BREAKPOINT stops, a conflict exists between Chrome’s sandbox and another component on your system.

Important: Running without a sandbox is a security risk — don’t browse normally with this setting. Use it only for diagnosis, identify what’s conflicting, and restore the normal shortcut.


Reset Browser Settings

A corrupted browser profile or changed settings can produce persistent STATUS_BREAKPOINT errors. Resetting the browser to default settings eliminates configuration issues without uninstalling.

Chrome: Go to Settings → Reset Settings → Restore Settings to Their Original Defaults and confirm. This disables extensions, clears temporary data, and resets all settings while preserving bookmarks and saved passwords.

Edge: Go to Settings → Reset Settings → Restore Settings to Their Default Values and confirm. Same effect as Chrome’s reset.

After resetting, test whether the error recurs before re-enabling extensions or changing settings.


Create a New Browser Profile

A corrupted user profile can cause persistent STATUS_BREAKPOINT errors that survive cache clears and settings resets because the corruption is in the profile data itself.

Chrome: Click the profile icon in the top right → Add → set up a new profile. Open Chrome in the new profile and test whether STATUS_BREAKPOINT occurs.

Edge: Same process — profile icon → Add Profile → Add.

If the error doesn’t occur in the new profile, your original profile is corrupted. Migrate to the new profile by signing in with your Microsoft or Google account to re-sync bookmarks and data.


Run System File Checker

Corrupted Windows system files cause application crashes that produce error codes including STATUS_BREAKPOINT. The System File Checker repairs corrupted files automatically.

Open Command Prompt as administrator and run:

DISM /Online /Cleanup-Image /RestoreHealth

After DISM completes, run:

sfc /scannow

Restart after both complete and test the browser.


Reinstall the Browser

If nothing else resolves STATUS_BREAKPOINT, a clean reinstall eliminates any corrupted browser installation files.

Uninstall Chrome or Edge through Settings → Apps → Installed Apps. After uninstalling, manually delete any remaining browser folders:

For Chrome: C:\Program Files\Google\Chrome and %localappdata%\Google\Chrome

For Edge: Edge is integrated into Windows more deeply — use the Edge repair option if available in Apps settings, or download a fresh installer from microsoft.com/edge.

Download a fresh installer and install clean. When the browser launches for the first time, allow firewall permissions when prompted.


A Quick Checklist

Work through these in order:

  • Disable hardware acceleration in browser Settings → System
  • Update GPU driver using DDU for a clean installation
  • Test in Incognito or InPrivate mode to rule out extensions
  • Disable all extensions and re-enable one at a time
  • Clear cache and cookies — Ctrl + Shift + Delete → All Time
  • Temporarily disable antivirus browser scanning
  • Disable screen recording overlays (OBS, GeForce Experience, etc.)
  • Update the browser to the latest version
  • Run Windows Memory Diagnostic to check RAM
  • Reset browser settings to defaults
  • Create a new browser profile and test there
  • Run DISM and sfc /scannow for system file repair
  • Reinstall the browser as a last resort

The Bottom Line

STATUS_BREAKPOINT in Chrome and Edge is almost always caused by a GPU driver conflict with hardware acceleration, a misbehaving extension, or corrupted browser data. Disabling hardware acceleration and testing in Incognito mode together identify the cause in the majority of cases — one checks the GPU path, the other checks the extension path.

If both of those are fine, the GPU driver update, RAM check, and browser profile reset cover most remaining scenarios. The error looks alarming but it’s almost always fixable without reinstalling Windows or replacing hardware.

STATUS_BREAKPOINT means the browser hit a state it shouldn’t have — find what pushed it there and remove that thing.

Leave a Comment