Lost registers during kernel debugging Win7

When kernel debugging an old target like Windows 7 after a long time using windbg. I noticed not being able to see the registers in register pane. That was kind of frustated at times, when there was a real need to have a look at them instead of doing an ‘r’ command each time in command window.

TL;DR

registers not visible

Here is a really neat windbg extension named wingdbg that solves the issue.

Extension repository

wingdbg

compilation

Setup

Copy the extension over to your extension path set via .extpath or default path.

.load wingdbg.dll
!regfix

Another alternative may be to find an old compatible windbg and work with that. Old Sdk Release

2021

memory tracking through nt!PoolHitTag

8 minute read

Let’s explore how nt!PoolHitTag can be useful for while tracking memory issues. Along with useful windbg command like !pool, !poolfind, !verifier etc.

Lost registers during kernel debugging Win7

less than 1 minute read

When kernel debugging an old target like Windows 7 after a long time using windbg. I noticed not being able to see the registers in register pane. That was k...

Back to Top ↑