1
I have a setup in which host is win8 and guest on virtual machine is also win8. 
Running windbg on host and debuggin guest on virtual machine throgh pipe. 
          Now i want to analyse how a device stack is built internally for a keboard. 
 For this when i run 

 "!drvobj kbdclass"

 on windbg it doesnt show up any keyboard device object in guest,Below is the output     
 what i get

 kd> !drvobj kbdclass
 Driver object (862357d0) is for:
 \Driver\kbdclass
 Driver Extension List: (id , addr)

 Device Object list:
 862480e8 
4

1 回答 1

2

请使用 !devstack 扩展命令。

例如)!devstack 862480e8

!devstack

!devstack 扩展显示与设备对象关联的设备堆栈的格式化视图。

!devstack DeviceObject 

参数

DeviceObject 指定设备对象。这可以是 DEVICE_OBJECT 结构的十六进制地址或设备名称。

DLL Windows 2000 Kdextx86.dll

Windows XP 和更高版本的 Kdexts.dll

于 2013-11-11T00:47:44.273 回答