How can I get the path of the dumpfile I've opened in Windbg?












2















I'm opening dumpfile in Windbg, and I'm writing a PYKD related Python script for working with that dumpfile. Now I'd like to create a file in the directory of that dumpfile, and the name of that file should be based on the dumpfile I've just opened.



In order to do this, I'd simply need to know the path of the dumpfile I've opened, but I don't find the basic Windbg command nor the PYKD command to get this.



How can I get the path of the file, I've opened in Windbg?










share|improve this question



























    2















    I'm opening dumpfile in Windbg, and I'm writing a PYKD related Python script for working with that dumpfile. Now I'd like to create a file in the directory of that dumpfile, and the name of that file should be based on the dumpfile I've just opened.



    In order to do this, I'd simply need to know the path of the dumpfile I've opened, but I don't find the basic Windbg command nor the PYKD command to get this.



    How can I get the path of the file, I've opened in Windbg?










    share|improve this question

























      2












      2








      2








      I'm opening dumpfile in Windbg, and I'm writing a PYKD related Python script for working with that dumpfile. Now I'd like to create a file in the directory of that dumpfile, and the name of that file should be based on the dumpfile I've just opened.



      In order to do this, I'd simply need to know the path of the dumpfile I've opened, but I don't find the basic Windbg command nor the PYKD command to get this.



      How can I get the path of the file, I've opened in Windbg?










      share|improve this question














      I'm opening dumpfile in Windbg, and I'm writing a PYKD related Python script for working with that dumpfile. Now I'd like to create a file in the directory of that dumpfile, and the name of that file should be based on the dumpfile I've just opened.



      In order to do this, I'd simply need to know the path of the dumpfile I've opened, but I don't find the basic Windbg command nor the PYKD command to get this.



      How can I get the path of the file, I've opened in Windbg?







      windbg pykd






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 2 at 14:52









      DominiqueDominique

      2,12342042




      2,12342042
























          2 Answers
          2






          active

          oldest

          votes


















          1














           >>> targetSystem().desc
          u'64-bit Kernel bitmap dump: C:\Users\User\AppData\Local\Temp\000030a40_memory.dmp'


          desc returns the same string as ||






          share|improve this answer































            3














            I don't know a specific PyKD command, but you could always use dbgCommand() and then use a WinDbg command.



            || should give you the needed information:



            0: kd> ||
            . 0 64-bit Kernel triage dump: F:somepathtest.dmp


            Please note that || shows the system status and may have multiple lines if you're debugging multiple systems at once:



            ||1:1:012> ||
            0 64-bit Kernel triage dump: F:somepathtest.dmp
            . 1 Live user mode: <Local>


            It's likely not applicable in your case.






            share|improve this answer























              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54008442%2fhow-can-i-get-the-path-of-the-dumpfile-ive-opened-in-windbg%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              1














               >>> targetSystem().desc
              u'64-bit Kernel bitmap dump: C:\Users\User\AppData\Local\Temp\000030a40_memory.dmp'


              desc returns the same string as ||






              share|improve this answer




























                1














                 >>> targetSystem().desc
                u'64-bit Kernel bitmap dump: C:\Users\User\AppData\Local\Temp\000030a40_memory.dmp'


                desc returns the same string as ||






                share|improve this answer


























                  1












                  1








                  1







                   >>> targetSystem().desc
                  u'64-bit Kernel bitmap dump: C:\Users\User\AppData\Local\Temp\000030a40_memory.dmp'


                  desc returns the same string as ||






                  share|improve this answer













                   >>> targetSystem().desc
                  u'64-bit Kernel bitmap dump: C:\Users\User\AppData\Local\Temp\000030a40_memory.dmp'


                  desc returns the same string as ||







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jan 4 at 9:39









                  ussrheroussrhero

                  47125




                  47125

























                      3














                      I don't know a specific PyKD command, but you could always use dbgCommand() and then use a WinDbg command.



                      || should give you the needed information:



                      0: kd> ||
                      . 0 64-bit Kernel triage dump: F:somepathtest.dmp


                      Please note that || shows the system status and may have multiple lines if you're debugging multiple systems at once:



                      ||1:1:012> ||
                      0 64-bit Kernel triage dump: F:somepathtest.dmp
                      . 1 Live user mode: <Local>


                      It's likely not applicable in your case.






                      share|improve this answer




























                        3














                        I don't know a specific PyKD command, but you could always use dbgCommand() and then use a WinDbg command.



                        || should give you the needed information:



                        0: kd> ||
                        . 0 64-bit Kernel triage dump: F:somepathtest.dmp


                        Please note that || shows the system status and may have multiple lines if you're debugging multiple systems at once:



                        ||1:1:012> ||
                        0 64-bit Kernel triage dump: F:somepathtest.dmp
                        . 1 Live user mode: <Local>


                        It's likely not applicable in your case.






                        share|improve this answer


























                          3












                          3








                          3







                          I don't know a specific PyKD command, but you could always use dbgCommand() and then use a WinDbg command.



                          || should give you the needed information:



                          0: kd> ||
                          . 0 64-bit Kernel triage dump: F:somepathtest.dmp


                          Please note that || shows the system status and may have multiple lines if you're debugging multiple systems at once:



                          ||1:1:012> ||
                          0 64-bit Kernel triage dump: F:somepathtest.dmp
                          . 1 Live user mode: <Local>


                          It's likely not applicable in your case.






                          share|improve this answer













                          I don't know a specific PyKD command, but you could always use dbgCommand() and then use a WinDbg command.



                          || should give you the needed information:



                          0: kd> ||
                          . 0 64-bit Kernel triage dump: F:somepathtest.dmp


                          Please note that || shows the system status and may have multiple lines if you're debugging multiple systems at once:



                          ||1:1:012> ||
                          0 64-bit Kernel triage dump: F:somepathtest.dmp
                          . 1 Live user mode: <Local>


                          It's likely not applicable in your case.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Jan 3 at 14:42









                          Thomas WellerThomas Weller

                          29.2k1169141




                          29.2k1169141






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54008442%2fhow-can-i-get-the-path-of-the-dumpfile-ive-opened-in-windbg%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

                              Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

                              A Topological Invariant for $pi_3(U(n))$