Dear Sirs:

I get one driver source code with WDF and want to debug it.
I Setup "WindowsXP-KB835935-SP2-slp-Symbols.exe" and
"dbg_x86_6.8.4.0.msi" into my
Host PC with XP-SP2 OS. And the Target PC is with Vista
OS(UAC off).

I setup target pc by following WinDBG topic:"Boot
Parameters to Enable Debugging->
Boot Parameters to Debug with a 1394 Cable in Windows
Vista"(Channel = 1) and also
set WinDBG(Channel =1) on Host PC.

Then I copy my driver(debug mode) to Target PC to ready for
trace.

But when i run WinDBG to wait for connect , but no
connection message shows.
I try many times and then same result.

Wha't wrong with me?
Please so kindly to help me.

Re: How to use WinDbg to debug Vista? by 0dbell

0dbell
Fri Mar 14 09:47:30 CDT 2008

On Mar 14, 6:49=A0am, bluestar <bluestar8...@gmail.com> wrote:
> Dear Sirs:
>
> =A0 =A0 =A0 =A0 =A0 =A0I get one driver source code with WDF and want to d=
ebug it.
> =A0 =A0 =A0 =A0 =A0 =A0I Setup "WindowsXP-KB835935-SP2-slp-Symbols.exe" =
=A0and
> "dbg_x86_6.8.4.0.msi" into my
> =A0 =A0 =A0 =A0 =A0 =A0Host PC with XP-SP2 OS. And the Target PC is with V=
ista
> OS(UAC off).
>
> =A0 =A0 =A0 =A0 =A0 =A0I setup target pc by following WinDBG topic:"Boot
> Parameters to Enable Debugging->
> =A0 =A0 =A0 =A0 =A0 =A0Boot Parameters to Debug with a 1394 Cable in Windo=
ws
> Vista"(Channel =3D 1) and also
> =A0 =A0 =A0 =A0 =A0 =A0set WinDBG(Channel =3D1) on Host PC.
>
> =A0 =A0 =A0 =A0 =A0 =A0Then I copy my driver(debug mode) to Target PC to r=
eady for
> trace.
>
> =A0 =A0 =A0 =A0 =A0 =A0But =A0when i run WinDBG to wait for connect , but =
no
> connection message shows.
> =A0 =A0 =A0 =A0 =A0 =A0I try many times and then same result.
>
> =A0 =A0 =A0 =A0 =A0 =A0Wha't wrong with me?
> =A0 =A0 =A0 =A0 =A0 =A0Please so kindly to help me.

I don't know the answer to your question but you may want to post your
question in a different newsgroup: microsoft.public.windbg -- legend
says the folks there know WinDbg inside out.

Don

Re: How to use WinDbg to debug Vista? by Gary

Gary
Fri Mar 14 13:08:42 CDT 2008

Typically 1394 issues are due to the chipset you are using in the target.
The most stable 1394 chipset for WinDbg has been those using TI chips. You
can get such a board on the OSR website. I have found that Dell machines
with onboard 1394 typically have few problems with 1394 debugging.

So ... there may be nothing wrong with you . :)

--
The personal opinion of
Gary G. Little


<0dbell@gmail.com> wrote in message
news:c344b609-0f8f-40d9-a710-1ad4921ebec7@b64g2000hsa.googlegroups.com...
On Mar 14, 6:49 am, bluestar <bluestar8...@gmail.com> wrote:
> Dear Sirs:
>
> I get one driver source code with WDF and want to debug it.
> I Setup "WindowsXP-KB835935-SP2-slp-Symbols.exe" and
> "dbg_x86_6.8.4.0.msi" into my
> Host PC with XP-SP2 OS. And the Target PC is with Vista
> OS(UAC off).
>
> I setup target pc by following WinDBG topic:"Boot
> Parameters to Enable Debugging->
> Boot Parameters to Debug with a 1394 Cable in Windows
> Vista"(Channel = 1) and also
> set WinDBG(Channel =1) on Host PC.
>
> Then I copy my driver(debug mode) to Target PC to ready for
> trace.
>
> But when i run WinDBG to wait for connect , but no
> connection message shows.
> I try many times and then same result.
>
> Wha't wrong with me?
> Please so kindly to help me.

I don't know the answer to your question but you may want to post your
question in a different newsgroup: microsoft.public.windbg -- legend
says the folks there know WinDbg inside out.

Don



RE: How to use WinDbg to debug Vista? by TanyaRadevaMSFT

TanyaRadevaMSFT
Sun Mar 16 01:01:00 CDT 2008

Did you setup the Target machine for debugging correctly?

You should run the following comands from the targtet's command shell:

bcdedit /debug on
bcdedit /dbgsettings 1394 [channel:channel]

Please check "Debugging Tools for Windows" ->Debuggers->Installation and
setup->...Configuring Software on the Target Compute documentation for more
information.

Best regards,
Tanya

"bluestar" wrote:

> Dear Sirs:
>
> I get one driver source code with WDF and want to debug it.
> I Setup "WindowsXP-KB835935-SP2-slp-Symbols.exe" and
> "dbg_x86_6.8.4.0.msi" into my
> Host PC with XP-SP2 OS. And the Target PC is with Vista
> OS(UAC off).
>
> I setup target pc by following WinDBG topic:"Boot
> Parameters to Enable Debugging->
> Boot Parameters to Debug with a 1394 Cable in Windows
> Vista"(Channel = 1) and also
> set WinDBG(Channel =1) on Host PC.
>
> Then I copy my driver(debug mode) to Target PC to ready for
> trace.
>
> But when i run WinDBG to wait for connect , but no
> connection message shows.
> I try many times and then same result.
>
> Wha't wrong with me?
> Please so kindly to help me.
>

Re: How to use WinDbg to debug Vista? by bluestar

bluestar
Sun Mar 16 20:38:24 CDT 2008

Thanks for all.
I will try it.