What's New

Browse by Tags

All Tags » General debugging tidbits (RSS)
WOHOO!!!, Debug Diag 64bit is finally released
For all of you who have been asking me if there is a 64bit version of Debug Diag (used to debug 64 bit processes), I am happy to say that yes, Debug Diag 1.1 64bit is now released. You can download it here: http://www.microsoft.com/DOWNLOADS/details.aspx...
First step in troubleshooting complex issues: Define and scope your issue properly
Is it a plane, is it a bird, is it a UFO? Before you can delve into any kind of troubleshooting of an issue you need to thoroughly define it.  If you don’t you’ll probably end up spending a lot of time randomly gathering and looking at data that...
First look at debugging .NET 4.0 dumps in Visual Studio 2010
I know that for a lot of you this is a bit far into the future, but I thought it would be nice to run through a few of my lab scenarios to show off some of the new features in Visual Studio 2010.  I am sure that I will miss a bunch of cool features...
.NET Exceptions: Quick WinDbg/SOS tip on how to dump all the .NET exceptions on the heap
Since a .net exception is a .NET object like any other, it gets stored on the GC heap when you (or some code you call) calls new XXException().  This means that if you have a memory dump of a process you can dump out all the recent exceptions that...
More Posts