sos.dll usage in visual studio 2013

debugging, sos, windbg

Solution

From MSDN documentation of What’s New for the Debugger in Visual Studio 2013 (Excerpt from the part `Debug With Debugging Tools for Windows`)

The SOS.dll (SOS Debugging Extension) that helps you debug managed programs in WinDbg, is not available from the Visual Studio IDE. See Debugging Managed Code Using the Windows Debugger

Looks like you may need to load them separately as being said Here

Problem

When I am reading docs about sos.dll @MSDN, encounter a note says If you are using Visual Studio 2013, SOS.dll is supported in the Windows Debugger within Visual Studio I know how to use sos.dll in the immediate window in Visual Studio 2012. But how to use sos.dll with visual studio 2013 debugger?

Original source