debugview

How would my program listen to OutputDebugString output and allow launch of multiple instances?

馋奶兔 提交于 2021-02-19 23:41:26
问题 Here's my scenario: I have a program which produces debug output with OutputDebugString() which maybe contains messages indicating bugs. I want to run this program inside daily build and automatically listen to debug output, parse it and report suspicious output. There're several examples of such listener implementations, for example this one. They all do the same - listen to a system-wide event and then read data from a file mapping. The problem is this protocol allows for only one instance

Windows下第一个驱动程序

时光总嘲笑我的痴心妄想 提交于 2021-01-30 10:19:22
Windows内核分析索引目录 :https://www.cnblogs.com/onetrainee/p/11675224.html 参考下面博客: VS2017搭建驱动开发环境WDK :https://www.cnblogs.com/blogg/p/9348609.html 使用vs2017 生成驱动文件注意事项: 使用VS2017+WDK10开发xp驱动 备注: DebugView on 工具清屏按钮: 来源: oschina 链接: https://my.oschina.net/u/4408513/blog/3422789

Deploy debug visualizer as a VSIX extension

偶尔善良 提交于 2019-12-12 22:16:20
问题 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 visualizer assembly must be copied to "My Documents\Visual Studio 2010\Visualizers" 回答1: It's not possible: Extension Manager/VSIX doesn't support placing files in the user's documents location, so this isn't possible. See here. 回答2: It's not possible via a VSIX, but you can publish MSIs to the Visual

Eclipse Plugin Dev- Extracting IStackFrame object from selection in Debug View

早过忘川 提交于 2019-12-12 02:07:56
问题 So, I am developing an Eclipse plugin and trying to build a View similiar to the Variables View. Now, to get the selected StackFrame from the Debug View, I have registered an IDebugContextListener, which ultimately calls the method listed below in case of a selection. The problem is that I ma unable to get a IStackFrame object from IStructuredSelection.getFirstElement(). I also tried to get an adapter for the IStackframe class. That too didn't work. I would really appreciate if someone can

Alternatives to DebugView?

血红的双手。 提交于 2019-12-04 12:35:50
问题 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 everything (well, everything "interesting"), change view by filtering Filter by process name Split log to different views by filtering Parsing messages Extending past OutputDebugString, receiving TCP/UDP messages from non-Windows devices Scripting(?) Features I like in DebugView: Filtering Colors Good

How to make DebugView work under .NET 4?

可紊 提交于 2019-12-03 14:38:55
问题 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 my case it's the Visual Studio debugger. Changing target framework from 4 to 3.5 makes it work again. Anybody knows a way of getting DebugView to work under .NET 4 while having the Visual Studio debugger attached? I tried clearing the Listeners collection of the Trace class, but no luck. 回答1:

Alternatives to DebugView?

倖福魔咒の 提交于 2019-12-03 07:18:49
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 everything (well, everything "interesting"), change view by filtering Filter by process name Split log to different views by filtering Parsing messages Extending past OutputDebugString, receiving TCP/UDP messages from non-Windows devices Scripting(?) Features I like in DebugView: Filtering Colors Good timestamps Live view Any tools for this? Or other available techniques? I'm using Windows XP/7 and am

How to make DebugView work under .NET 4?

≡放荡痞女 提交于 2019-12-03 04:25:10
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 my case it's the Visual Studio debugger. Changing target framework from 4 to 3.5 makes it work again. Anybody knows a way of getting DebugView to work under .NET 4 while having the Visual Studio debugger attached? I tried clearing the Listeners collection of the Trace class, but no luck. .NET trace messages are emitted using the OutputDebugString function in the Windows kernel. This function, as

FileSystem MiniFilter Driver compiled with WDK 8.0 not showing DbgPrint output (DbgView/Win7 32 bit)

試著忘記壹切 提交于 2019-12-01 11:15:20
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 i ran DbgView, i could see the DbgPrint output accurately. Then i compiled that very same driver using WDK 8.0 integrated in Microsoft Visual Studio Pro 2012 for Windows 7 (32 bit). That created 3 files as a result, a sys, cat and inf file. I installed the Driver on a Windows 7(32 bit) machine running on VMWare, by right clicking the inf file and selecting 'install'. Then i started the service

FileSystem MiniFilter Driver compiled with WDK 8.0 not showing DbgPrint output (DbgView/Win7 32 bit)

末鹿安然 提交于 2019-12-01 09:24:11
问题 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 i ran DbgView, i could see the DbgPrint output accurately. Then i compiled that very same driver using WDK 8.0 integrated in Microsoft Visual Studio Pro 2012 for Windows 7 (32 bit). That created 3 files as a result, a sys, cat and inf file. I installed the Driver on a Windows 7(32 bit) machine