The debugview tag has no wiki summary.
1
vote
1answer
175 views
FileSystem MiniFilter Driver compiled with WDK 8.0 not showing DbgPrint output (DbgView/Win7 32 bit)
I wrote and compiled a minifilter driver using WDK 7.0 build utility for Windows 7 32 bit. Then i installed it on a Windows 7 (32 bit) machine running on VMWare using OSR's driver loader utility. When ...
0
votes
1answer
59 views
Using dbgview with java
I am writing java code and would like to use dbgview (and log4j if possible). By searching the documentation of log4j it seems that unlike log4net, log4j does not support the OutputDebugStringAppender ...
0
votes
3answers
377 views
C++ try/catch: OutputDebugStringW in catch block outputs twice?
I have a function with a try catch block that looks like this:
bool apple()
{
OutputDebugStringW(L"entered apple");
try {
SomeObj orange;
int a = global_b->num; // global_b is ...
4
votes
2answers
2k views
No output from DebugView
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 ...
0
votes
1answer
136 views
DebugView makes my application crash
I have an application done in C++ with Visual Studio 2010 and it is firing a lot of debug info with OutputDebugStringW (about 50 per seconds which is obviously a lot).
If I open close DebugView 3 ou ...
0
votes
1answer
219 views
How to view output of OutputDebugString () across the network?
Further to my previous question, I find that I cannot use the GExpertsDebugWindow on a PC which did not previously have Delphi installed.
If I have the following (not unusal, so probably of interest ...
0
votes
2answers
433 views
debugView showing no stderr output
I am running debugView under VS2010 on Win 7 64bit. I have a c# app that calls a c dll. I have some fprintf(stderr) statements in my C dll, and some Console.Error writeLine statements in my c# code, ...
0
votes
1answer
379 views
Windows 2008 r2 debugview (OutputDebugString) issue
Hi we are installing x86 application as a service on windows 2008 R2 which is using OutputDebugString for debug messages.
The problem is that DebugView utility catches the debug output from the ...
3
votes
4answers
2k views
How to view output of OutputDebugString?
I want to use OutputDebugString() in my application and then have the option to show it in a separate viewer when the app is deployed in the field.
That is to say, I don't want to have to to change a ...
0
votes
0answers
232 views
Connect DebugView with Windows Service Application for all users
I'm running a windows service application through my account on a Windows 2003R2 server. It runs for all users, but debugview of course runs only for my user. I have debugview printing my service ...
0
votes
1answer
744 views
Kernel debug output not shown in DebugView ( Win7 x64 )
I'm using DebugView 4.78 to debug output from my driver. I've used the instructions from here (option 1, setting DEFAULT value to 0xf), rebooted, but I still cannot get any debug output from my driver ...
0
votes
1answer
228 views
DebugView suddenly stops working
Has anyone encountered a situation where DebugView application suddenly stops working, e.g. there is an application that calls DebugOutputString Win32 API but the output stops appearing in the ...
1
vote
0answers
659 views
Debugview doesnt work on windows 7 64
I'm writing an application and debugging it VS2010. It uses "Microsoft.Practices.EnterpriseLibrary.Logging.Logger.Write" for logging.
My machine runs Windows7x64 and am using VS2010 professional.
I ...
1
vote
1answer
1k views
Trace.WriteLine not producing any output
I'm having an odd problem With Trace.WriteLine not producing any output. I've traced the code and Trace.Writeline is definitely getting called, but no output is appearing in the Output window or in ...
0
votes
1answer
69 views
DebugView DeviceId Error
When I run DbgView.exe I am getting the following output. I tried "Run as Administrator" but no change.
How can I solve this.
0
votes
2answers
256 views
How do I get SysInternals DebugView to display indents?
I'm using SysInternals DebugView with my .Net application. I've tried using the Indent feature of the .Net Debug class, but DebugView just seems to represent this as a NewLine character.
Does ...
5
votes
4answers
3k views
Alternatives to DebugView?
I'm using SysInternals DebugView for debugging/logging during testing, and it's pretty good. However I was thinking is there more advanced tool.
Features I'm looking for:
Live filters - log ...
1
vote
1answer
117 views
Deploy debug visualizer as a VSIX extension
is it possible to deploy my debug visualizer with the new extension system in visual studio 2010? I want to publish it on the online gallery and allow to manage it via the extension manager.
The ...
0
votes
1answer
323 views
DebugView Error
I'm working with Windows 7 64X and DebugView 4.76.0.0.
Logs isn't shown on DebugView.
I trying to write logs with Debug.WriteLine("Text"); and see nothing.
I can see that It's connected to my ...
1
vote
3answers
401 views
How can I redirect the output of command prompt to DebugView on windows?
My idea is something like
C:\myprog.exe > DebugView
but instead of creating a file named "DebugView", I would like the output of myprog.exe to be captured by DebugView.
Any comment is highly ...
15
votes
3answers
5k views
How to make DebugView work under .NET 4?
SysInternals' DebugView no longer works if used under .NET 4. Some research indicated that the new architecture of the framework did not allow for traces to be captured if a debugger was attached; in ...
2
votes
1answer
262 views
DebugView alternative for Linux (mono related)
Under Windows we use DebugView to monitor trace and debug outputs of our .NET application. Since we are currently porting the application to mono on Linux I wonder if there's a similar tool.
We're ...
3
votes
3answers
678 views
Can I disable “debug view” in Visual Studio 2010?
Visual Studio 2010 switches to "debug view" when i click 'start debugging' - much like Eclipse does.
Can i disable this feature - if so how?
My machine doesn't perform very well - therefore the ...
0
votes
1answer
371 views
Capturing trace/debug information from a Silverlight OOB app running on a Mac
I'm having a problem with a trusted Silverlight 4 OOB app when it runs on a Mac.
In order to debug I'd really like to be able to capture the debug/trace information output by the app. (The problem is ...
1
vote
1answer
549 views
Windows Kernel Debugger API?…accessing strings
Does everyone out there knows how can you read windows kernel debugger strings generated by calls to kdPrint or debugPrint functions?
Reading in user mode especially but it is also good in kernel ...
1
vote
4answers
1k views
OutputDebugString + DebugView = not tabs!
I am dumping \t delimited data using using OutputDebugString and then use ex-Sysinternals DebugView to capture it.
The problem is that all the data in DebugView appear to be space delimited, hence I ...
5
votes
2answers
5k views
Why does DebugView not show debugging messages when Visual Studio does
I am developing a Browser Helper Object running inside Internet Explorer. I am writing debugging messages with ATLTRACE("..."); These appear fine when Visual Studio is attached to the iexplore.exe ...
