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

試著忘記壹切 提交于 2019-12-01 11:15:20
Rohan

In vista and above DbgPrint messages get masked by default.

Try this in your WinDbg prompt

ed Kd_DEFAULT_Mask 8

Refer to this question Kernel trace Windows 7 WinDbg or this article DbgPrint in vista and later for more details.

Have you tried to compile with WDK 8 for Windows 8/Windows server 2012

For debug prints work for Windows 7 which is compiled with WinDDK, but for Windows 8/Server 2012 it has to be compiled with WDK 8 and debug information not printing.

Alternatively, you could simply write a little reg script that would enable them by default. The registry key in question is:

  1. HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Debug Print Filter
  2. Value: DEFAULT
  3. Data: 0x8

Also check this.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!