Error Dbg Control Break 696 (0x2B8): How to Fix it
Stop any running debuggers if you encounter this issue
2 min. read
Updated on
Read our disclosure page to find out how can you help Windows Report sustain the editorial team. Read more
ERROR_DBG_CONTROL_BREAK is a developer error, and in most cases, you won’t encounter it as a regular user. If you encounter this issue, today’s guide is going to show you how to fix it.
How can I fix ERROR_DBG_CONTROL_BREAK?
Before we start, try to stop the debugging session and restart it again. Ensure that your drivers are up to date.
1. Close any debuggers that might be running
- Press Ctrl + Shift + Esc to open Task Manager.
- Next, look for debugger tools such as windbg.exe, and vsjitdebugger.exe.
- Select them and click on End Task.
2. Detach the debugger from the process
- Open your debugging tool of choice.
- If you’re using Visual Studio, go to Debug and choose Detach All.
- For WinDbg, go to Debug and select Detach Debuggee.
3. Disable Debugging mode in Windows
- Press the Windows key + S and type cmd. Select Run as administrator.
- Run the following command:
bcdedit /debug off
- Restart your PC.
4. Scan your system files
- Open Command Prompt as administrator once again.
- Run
sfc /scannow
- Wait for the scan to finish.
- Restart your PC and check if the problem is gone.
Often you can recognize ERROR_DBG_CONTROL_BREAK by the following message: 696 (0x2B8) Debugger received control break. If you ever encounter this problem, you should be able to fix it by restarting your debugging sessions or with our other solutions.
This isn’t the only debugging error you can encounter, we wrote about ERROR_DBG_PRINTEXCEPTION_C and ERROR_DBG_CONTROL_C in our previous guides, so don’t miss them.
User forum
0 messages