.........

Programming, for all ages and all languages.
Post Reply
Yooooooo5454
Posts: 4
Joined: Sun Aug 28, 2011 3:25 am

.........

Post by Yooooooo5454 »

..............
Last edited by Yooooooo5454 on Sun Oct 25, 2015 6:19 am, edited 1 time in total.
Konorisius
Posts: 3
Joined: Tue Aug 16, 2011 2:13 pm

Re: Windows Driver Debugging

Post by Konorisius »

I needed to write a driver long time ago. As fare as I remember you need to boot Windows 7 in debug mode. You can edit the boot option with bcdedit, like:

Code: Select all

bcdedit /set [ID] debug on
[source]

You can get a driver debugger from the Windows Driver Kit from Microsoft.

If the WLAN card driver is not yours and you don't have permission, you should ask a lawyer if this debugging is illegal in your country!
User avatar
Owen
Member
Member
Posts: 1700
Joined: Fri Jun 13, 2008 3:21 pm
Location: Cambridge, United Kingdom
Contact:

Re: Windows Driver Debugging

Post by Owen »

Generally this kind of stuff is done by ACPI (i.e. somehow WButton.exe invokes an ACPI method)
Zerith
Posts: 14
Joined: Sun Jul 05, 2009 4:01 pm

Re: Windows Driver Debugging

Post by Zerith »

Windbg (free) & Syser Kernel Debugger (has GUI)
Post Reply