Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No output from DebugView

Tags:

I've installed DebugView 4.79 on Windows 7 and Windows 8 64 bit machines and a Windows 7 32 bit machine. On all of them I see no output from DebugView when starting it as Administrator. I'm trying to debug an application that uses a CLI/C++ component with ATLTRACE calls in it.

I've enabled capture events, capture win32 and capture global win32 and see nothing so I'm not sure what's going on.

like image 979
DaveO Avatar asked Sep 19 '12 12:09

DaveO


People also ask

How do I run DebugView?

To start DebugView from AlwaysUp, choose Application > Start "Dbgview". The state will transition to Running and DebugView will start working in the background. That's it! Next time your computer boots, DebugView will start up immediately, before anyone logs on.

What is DebugView?

DebugView is an application that lets you monitor debug output on your local system, or any computer on the network that you can reach via TCP/IP.


2 Answers

By default DbgPrint() output is disabled in Vista/Server2008 and above. The following setting in the registry should enable the debug prints.

  1. Open up the registry
  2. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Debug Print Filter
  3. Add the following value DEFAULT : REG_DWORD : 0xFFFFFFFF
  4. Reboot
like image 122
Naishy Avatar answered Oct 02 '22 07:10

Naishy


IF "Debug Print Filter" doesn't exist, you should create it manually

like image 26
sdidaddi Avatar answered Oct 02 '22 08:10

sdidaddi