Edited Issue: [0.3.x] Windbg crashes when debugging system reboots (kernel...
Environment:windbg 6.2.9200.16384 AMD64PYKD 0.3.0.18Reproduce:C:\Users\igorl>type C:\test.py``` Pythonfrom pykd import *try: while True: print "break" s = dbgCommand(".reload;kb") dprint(s)...
View ArticleNew Post: Simple go/break script
go() resumes the debugged process and returns control to the debugger only when the debugger is stopped again - triggered by a breakpoint or when debugging is stopped manually via Ctrl+Break. Using...
View ArticleCommented Issue: [0.3.x] Windbg crashes when debugging system reboots (kernel...
Environment:windbg 6.2.9200.16384 AMD64PYKD 0.3.0.18Reproduce:C:\Users\igorl>type C:\test.py``` Pythonfrom pykd import *try: while True: print "break" s = dbgCommand(".reload;kb") dprint(s)...
View ArticleNew Post: Cannot get command output
try use full path to msec.dll: pykd.dbgCommand(".load c:\dir\msec.dll")try call pykd.loadExt, example:class ext_loader: def __init__(self, name): self._name = name def __enter__(self): self._ext =...
View ArticleNew Post: Simple go/break script
Thank you for the replay :) I wrote some simple code with threads, but after execution it stops whole Windbg. I am trying to find right solution, but maybe you can give me a hint?def breakInThread():...
View ArticleCommented Issue: [0.3.x] Windbg crashes when debugging system reboots (kernel...
Environment:windbg 6.2.9200.16384 AMD64PYKD 0.3.0.18Reproduce:C:\Users\igorl>type C:\test.py``` Pythonfrom pykd import *try: while True: print "break" s = dbgCommand(".reload;kb") dprint(s)...
View ArticleCommented Issue: [0.3.x] Windbg crashes when debugging system reboots (kernel...
Environment:windbg 6.2.9200.16384 AMD64PYKD 0.3.0.18Reproduce:C:\Users\igorl>type C:\test.py``` Pythonfrom pykd import *try: while True: print "break" s = dbgCommand(".reload;kb") dprint(s)...
View ArticleNew Post: Simple go/break script
I am still struggling with this problem. Can anyone give me a hint what could be wrong?
View ArticleSource code checked in, #89758
[0.3.x] added : stepout routine ( The traget is executing while not returned from the current subroutine ) [0.3.x] added : sourceStep ( The target is executing a single source line ) [0.3.x] added :...
View ArticleReleased: PYKD 0.3.0.19 (Feb 20, 2015)
Installation guide: 0. choose x86 or x64 and download it 1. unpack archive to any catalog 2. if you have not a VS Studio 2012 installed, you should register msdia110.dll by the command regsvr32...
View ArticleCreated Release: PYKD 0.3.0.19 (Feb 20, 2015)
Installation guide: 0. choose x86 or x64 and download it1. unpack archive to any catalog2. if you have not a VS Studio 2012 installed, you should register msdia110.dll by the command regsvr32...
View ArticleCreated Issue: [0.3.x] typedVar.fields() method raises exception [13472]
If typedVar is representing a struct with static member, method fields() raises exception:"static field has only virtual address"
View ArticleEdited Issue: [0.3.x] typedVar.fields() method raises exception [13472]
If typedVar is representing a struct with static member, method fields() raises exception:"static field has only virtual address"
View ArticleSource code checked in, #89772
[0.3.x] fixed : issue #13472 ( typedVar.fields() method raises exception )
View ArticleEdited Issue: [0.3.x] typedVar.fields() method raises exception [13472]
If typedVar is representing a struct with static member, method fields() raises exception:"static field has only virtual address"
View ArticleNew Post: pykd 0.3 doesn't work eventHandler onLoadModule
from pykd import * class MyEventHandler(eventHandler): def onLoadModule(self, module): dprintln("onLoadModule_2134 ()") return DEBUG_STATUS_BREAK myHandler = MyEventHandler() dprintln("Hello world")...
View ArticleNew Post: pykd 0.3 doesn't work eventHandler onLoadModule
I'm so sorry ((. I've found 0.3.x version change events names: 0.2.x - onLoadModule 0.3.x - onModuleLoad 0.2.x - onUnloadModule 0.3.x - onModuleUnload I'm going to change names back.
View Article