windbg first connect then stuck on “Debuggee not connected.” message during kernel debugging

。_饼干妹妹 提交于 2019-11-30 23:43:10

It looks like you got the debugger attached to the target. (1) Ignore WinDbg status message. The best way to see if you're connected to the target is to try a few commands. (2) When I debug a virtual machine, the serial port that I'm using also goes missing, but it looks like you figured that out (good job).

In order to issue commands you need to break into the kernel. Click "Debug->Break" and try the following commands:

.reload
!ustr srv!SrvComputerName 

That should give you the target system computer name.

If you want to learn more about kernel debugging, I would check out TheSourceLens on YouTube. As for literature, I can't recommend any books, because most information I find are online. However, I would recommend checking out OSR Online. Happy debugging.

You can try Bellavista.exe to create a new debug entry and look for the differences.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!