1

我想写一个UMDF2windows驱动,不知道从哪里看输出OutputDebugString

这是我的代码,类似于KMDF Hello World.

#include <Windows.h>
#include <wdf.h>

NTSTATUS UmdfHelloWorldEvtDeviceAdd(_In_ WDFDRIVER Driver, _Inout_ PWDFDEVICE_INIT DeviceInit)
{
    UNREFERENCED_PARAMETER(Driver);

    NTSTATUS status;
    WDFDEVICE hDevice;

    OutputDebugString((LPCWSTR)"UmdfHelloWorld: EvtDeviceAdd\n");

    status = WdfDeviceCreate(&DeviceInit, WDF_NO_OBJECT_ATTRIBUTES, &hDevice);

    return status;
}

NTSTATUS DriverEntry(_In_ PDRIVER_OBJECT DriverObject, _In_ PUNICODE_STRING RegistryPath)
{
    NTSTATUS status = STATUS_SUCCESS;
    WDF_DRIVER_CONFIG config;

    OutputDebugString((LPCWSTR)"UmdfHelloWorld: DriverEntry\n");

    WDF_DRIVER_CONFIG_INIT(&config, UmdfHelloWorldEvtDeviceAdd);
    status = WdfDriverCreate(DriverObject, RegistryPath, WDF_NO_OBJECT_ATTRIBUTES, &config, WDF_NO_HANDLE);
    
    return status;
}

windbg运行 KMDF Hello World 驱动程序在内核模式调试中成功给了我输出。但是,UMDF Hello World 驱动程序没有显示输出。

这就是我(卸载)安装驱动程序的方式:

devcon.exe install UmdfHelloWorld.inf Root\UmdfHelloWorld
devcon.exe remove Root\UmdfHelloWorld

另外,我想使用用户模式调试,但我不知道如何为 UMDF 驱动程序执行此操作。

4

1 回答 1

0

Umdf2 Hello World 驱动程序,在哪里查看输出?

正如Lex所说,您可以使用DebugView查看 UMDF 驱动程序的输出。

Besdies,您可以尝试在 UMDF Drivers 中使用 WPP 软件跟踪

于 2020-07-14T10:20:22.207 回答