From: eagersh on
On Aug 13, 5:13 am, hitesh <hitesh.ughr...(a)gmail.com> wrote:
> hi all,
> i am writing storport miniport driver.
> i am using function DebugPrint to print the message.
> i have enabled all messages but still it is not printing.
> if i use "DebugView" software and select option "Enable Verbose Kernel
> Output" in target machine then it is also printing on my host
> machine's WinDbg.
> does anybody have any idea what it is doing when we enable the option
> "Enable Kernel Verbose" ?
>
> or how to print the message in WinDbg without using "DebugView"?
>
> thanks,
> Hitesh

You need enable debug tracing in StorPort driver. Run in WinDbg
following command:
ed nt!kd_STORMINIPORT_mask 0xf

Igor Sharovar