You had a chance (!!??) to work with WinDBG with SOS.DLL extension for debugging .net applications.
Psscor2 provides a superset of SOS.DLL functionality, specially for ASP.NET application. I already used it in only ASP.NET based projects, so this improvements will help me a lot (I am prying for not to need it in real life scenarios).
Earlier I was using this command for listing all exceptions.
.foreach (ex {!dumpheap -type Exception -short}){.echo "********************************";!pe -nested ${ex} }
It says; "list all types which has a name that contains 'Exception' word.";
Now with PSSCOR2; DumpAllExceptions (shorted as dae) command does the work.
!dae
For example, Psscor2 provides the ability...