Questions tagged [debugview]

DebugView is a tool from Sysinternals to capture debug messages

DebugView is a tool written by Mark Russinovich to capture debug messages. It is part of the Sysinternals suite (formerly Winternals).

61 questions
1
vote
1 answer

How to stop the DebugView tool through command line parameters

In my project I want to start the DebugView tool through command line parameters to capture kernel logs automatically, but after finishing a task I want to stop this DebugView tool. How do I stop this tool through command line parameters?
1
vote
0 answers

Finding a TraceSource from code

We have a large business application which contains multiple project all managed by a single management project. within this management project i want to adjust the switch value of certain tracesources remotly and use DebugView to see what is…
1
vote
1 answer

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 in in code running in a background thread so…
Matt Lacey
  • 65,560
  • 11
  • 91
  • 143
1
vote
1 answer

Mysterious objects in Debug View Hierarchy

I'm having trouble understanding what I'm seeing in the Debug View Hierarchy. Here's a screenshot: The question is what are all the seemingly extraneous views (highlighted in blue)? I'm particularly interested in the one in front of the red view.…
rattletrap99
  • 1,469
  • 2
  • 17
  • 36
1
vote
0 answers

DebugView doesn't work on Windows 10

I can't capture trace from kernel, using WinDbg on Windows 10 x86. Seems troubles with old signature. Are there any alternatives which could receive DbgPrint from kernel driver?
Roman
  • 41
  • 1
  • 4
1
vote
1 answer

DirectX 10 debug output not working

I cannot make debug output for DirectX 10 to work for my simple C# application. I've installed DirectX SDK, opened DirectX Control Panel and added application exe to list. DirectX debug output was not shown in neither DebugView (when I start…
Ivan Peric
  • 4,263
  • 3
  • 23
  • 32
1
vote
0 answers

How to execute debug view on remote computer using wmi

I am looking to run Debugview on a remote machine (I have the username,password and the ip adress of that machine). I have developed this code object[] theProcessToRun = { "C:\\Dbgview.exe /t /l C:\\debugview1.log" }; ConnectionOptions…
1
vote
1 answer

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 which redirect output to what dbgview listens…
0
votes
1 answer

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 DebugView application window? Can it be caused by high…
Boris
  • 1,311
  • 13
  • 39
0
votes
1 answer

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.
onurozcelik
  • 1,214
  • 3
  • 21
  • 44
0
votes
2 answers

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 anyone know if it's possible to get DebugView to…
RikRak
  • 898
  • 1
  • 7
  • 21
0
votes
0 answers

Google Analytics logs only visible in debug mode with React Native

I'm using Google Analytics in my React Native app, and I'm facing an issue where I can only see the logs in the overview dashboard when the debug mode is enabled using the adb command adb shell setprop debug.firebase.analytics.app il.co.packageName.…
Shalev
  • 25
  • 5
0
votes
0 answers

Terminal Error : Exception occurred while executing 'list'

When I try to connect my android device to my mac to test an app via firebase debugview I got this error. Exception occurred while executing 'list': java.lang.SecurityException: Shell does not have permission to access user…
0
votes
0 answers

Debug view (dbgView) doesn't capture OutputDebugString

I have this very simple program (a test one), to test the function OutputDebugString. #include #include #include int main() { OutputDebugStringA("Hello string"); return 0; } However, when I run it and…
nortain32
  • 69
  • 1
  • 7
0
votes
1 answer

GA4 Debugview staging issue

I'm trying to get GA4 e-commerce working for a client. For some reason though I cannot get the testing environment to send data over to any GA4 property. The preview and DebugView work just fine with the production website but the second I change…