Any way to see Debug output without Visual Studio?

Using the MFC TRACE macro or OutputDebugString from the Windows API, you can write to Visual Studio's output window. Is there any way to see this output on a system where you do not have Visual Studio installed and do not want to install it?

+4
source share
2 answers

You can use Debugview from Sysinternals / Microsoft

http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx

+8
source

You can write the output from OutputDebugString with DebugView for Windows :

DebugView is an application that allows you to track debug output to your local system or any computer on the network that you can achieve through TCP / IP. it is capable of displaying both kernel mode and Win32 debugging output, so you don’t need a debugger to debug output your applications or device drivers generate, and you don’t need to change your applications or drivers to use non-standard debugging output APIs.

+7
source

All Articles