Charlie Chien
Charlie Chien

Reputation: 1

Specific Pykd API cannot work on my platform and work on another

Here is what I observe in the Windbg logs. Please help to give me some suggestion to prevent this error

>>> pykd.typeInfo("nt!_UNICODE_STRING")
Traceback (most recent call last):
  File "<console>", line 1, in <module>
pykd.SymbolException: '_UNICODE_STRING' - symbol not found

I can work fine on another device. However, when I use this device, it always shows this error message when I use specific API call.

I think it should work fine. Also when I use pykd.typedVar("nt!_UNICODE_STRING",<addr>) came across the same issue.

Upvotes: 0

Views: 18

Answers (1)

Ivellios
Ivellios

Reputation: 100

Try raw windbg commands first:

kd> !sym noisy  
kd> .reload /f nt  
kd> dt nt!_UNICODE_STRING  

Upvotes: 0

Related Questions