Reputation: 1
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
Reputation: 100
Try raw windbg commands first:
kd> !sym noisy
kd> .reload /f nt
kd> dt nt!_UNICODE_STRING
Upvotes: 0