Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any WinDBG replacements with a better GUI?

I'm using WinDBG occasionally to analyze problems in production environment, where VS cannot be installed. There's no doubt it's an extremely powerful tool, but using it is a bit annoying. Even though the product is frequently updated, its GUI goes back to the Win95 days or so, and its usability is accordingly. Having to fight the GUI to layout the windows the way I want, and having to remember all those textual commands, is just quite low a standard for a modern desktop application.

AFAIK, WinDBG is pretty much built on top of CDB, which is a command line debugger. Being so, it shouldn't be that hard to built a modern days GUI wrapper that will replace the existing dinosaur. Has anyone ever done that? Am I the only one having those mixed feelings toward WinDBG?

(BTW, I know I can create a dump and take it back to where I have VS, but I sometimes have to debug 64 bit processes, and I don't have a 64 bit dev machine. Sad, but true)

like image 243
eran Avatar asked Jul 20 '09 13:07

eran


3 Answers

Consider the new WinDbg. (It's still in Preview). It also supports Time Travel Debugging.

You can install it from the Microsoft Store, or use the links here.

Here is what's new with Windbg Preview.

Windbg Preview GUI

like image 140
Sachin Joseph Avatar answered Nov 15 '22 15:11

Sachin Joseph


Have look at this if you fancy trying out a GUI to replace WinDbg.

EDIT:

Since SOS Assist is no longer available, this answer should be deleted. As this answer has been accepted, I personally cannot delete it. In that, please ignore my answer.

like image 36
Jason Evans Avatar answered Nov 15 '22 14:11

Jason Evans


I guess thats too much to expect. With such a large number of commands that it has, it will not be trivial to have UI that displays everything in fancy controls. It might also make it bulkier, slower.

However it does provide you with controls that any user mode application debugger should have. It displays most frequently needed information like call stack, local variables, threads and so on in seperate windows.

But if you need more advanced debugging feature, you alwalys have the command interface.

like image 33
Canopus Avatar answered Nov 15 '22 16:11

Canopus