Hi can anybody please tell me if I can output Event Tracing messages to
the debugger (WinDBG), like DbgPrint.
Thanks
Ashish
Hi can anybody please tell me if I can output Event Tracing messages to
the debugger (WinDBG), like DbgPrint.
Thanks
Ashish
“Singh, Ashish” wrote in message news:xxxxx@ntdev…
>
> Hi can anybody please tell me if I can output Event Tracing messages to
> the debugger (WinDBG), like DbgPrint.
>
Use the tracelog utility:
tracelog -start fred -kd -flag 0xFFFF -ft 2 -rt -guid
x.ctl -noprocess -nothread -nodisk -nonet
where x.ctl is the file that contains your GUID.
You can then use the the WMITRACE DLL (!load WMITRACE.DLL) to manipulate
trace info in the debugger. Do !wmitrace.help for more info.
HTH,
Peter
OSR