From: Pavel A. on
dsrking2006(a)gmail.com wrote:
> Is there any user manual for windbg commands?

No, but windbg has a help file.
Print it out, if you like.

--PA
From: David Craig on
Also the book "Advanced Windows Debugging" from Addison Wesley. It should
be considered for a read after some basic competency has been gained with
windbg.


"Pavel A." <pavel_a(a)NOfastmailNO.fm> wrote in message
news:OvgGmrRDJHA.5656(a)TK2MSFTNGP04.phx.gbl...
> dsrking2006(a)gmail.com wrote:
>> Is there any user manual for windbg commands?
>
> No, but windbg has a help file.
> Print it out, if you like.
>
> --PA


From: Doron Holan [MSFT] on
in the same directory as kd.exe/windbg.exe will be a help file,
debugger.chm. you can get to this file by running the .hh command in either
kd or windbg. you can even have it navigate to the right topic by using .hh
<command>

d

--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.


<dsrking2006(a)gmail.com> wrote in message
news:1bc1fc12-cd3f-4386-ad5e-3c2f4f500fee(a)z11g2000prl.googlegroups.com...
> Hi Doron,
>
> Thank you so much.
>
> I loaded successfully hidusbfx2 as virtual one.
>
> bu command is very useful for this kind of errors.
>
> Is there any user manual for windbg commands?
>
> Once again Thanks.
>
> Warm Regards - Dsrking.

From: dsrking2006 on
Hi

Thanks for Reply.

I got one more issue during uninstall the driver. i.e., Debugger shows
msg "*** ERROR: Module load completed but symbols could not be loaded
for hidkmdf.sys" when uninstall the driver.

In my driver, hidusbfx2.sys and hidkmdf.sys are there.

During uninstall, HidFx2EvtDeviceD0Exit is called successfully but
cleanup function is not called and it shows the above error msg.

I also set the breakpoint in cleanup function, but it is not found.

Thanks in Advance.

Regards - Dsrking.


From: Doron Holan [MSFT] on
what is the status of the devnode after this failure ? in the debugger you
can use !devnode 0 1 hidkmdf to find it (or maybe hidusbfx2 if that is the
FDO for the stack)

d

--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.


<dsrking2006(a)gmail.com> wrote in message
news:3da341d2-06ef-4201-bcde-f5dae78810f7(a)a3g2000prm.googlegroups.com...
> Hi
>
> Thanks for Reply.
>
> I got one more issue during uninstall the driver. i.e., Debugger shows
> msg "*** ERROR: Module load completed but symbols could not be loaded
> for hidkmdf.sys" when uninstall the driver.
>
> In my driver, hidusbfx2.sys and hidkmdf.sys are there.
>
> During uninstall, HidFx2EvtDeviceD0Exit is called successfully but
> cleanup function is not called and it shows the above error msg.
>
> I also set the breakpoint in cleanup function, but it is not found.
>
> Thanks in Advance.
>
> Regards - Dsrking.
>
>