Do not receive DbgPrintEx fingerprints on a Windows debugger running on a host (Windows 10)

My driver has been successfully deployed to the target Windows 10 PC. But still, I am not getting debugging fingerprints on a Windows debugger session (WinDbgX64) on my HOST PC.

I also installed the HKEY_LOCAL_MACHINE \ System \ CurrentControlSet \ Control \ Session Manager \ Debug Print Filter " DEFAULT " to a DWORD value of 8 , so my DPFLTR_INFO_LEVEL be able to send data to the kernel buffer.

Installation and configuration of components for deploying and testing drivers through visual studio starts successfully. Therefore, to deploy the drivers, he created a WDKRemoteUser account on my target machine.

My host environment: - Windows 10 (Build 10130) X64 and Visual Studio 2015 RC with all installed components.

My target environment: - Windows 10 (Build 10130) X64 and installed components for debugging and testing.

My print debugging instruction inside the driver input procedure is as follows.

DbgPrintEx ( DPFLTR_IHVDRIVER_ID , DPFLTR_INFO_LEVEL , "KMDFHelloWorldDriver: DriverEntry \ n");

+4
source share

All Articles