How to avoid the DbgCommand command being written to the logfile

后端 未结 3 645
耶瑟儿~
耶瑟儿~ 2021-01-21 01:45

I\'m having an annoying issue with Pykd.pyd: I\'m using it in a script, launching several DbgCommand functions, like:

DbgCommand(\"dt 0         


        
3条回答
  •  攒了一身酷
    2021-01-21 02:30

    Try to enumerate types for your module ( with wildcard mask ) and find exact symbol name for CMap.

    app = pykd.module("")
    for tp in app.enumTypes("CMap*"):
       print tp
    

    I can try to reproduce an issue on a small example, but I need to know your Visual Studio version.

提交回复
热议问题