How can I get the path of the dumpfile I've opened in Windbg?
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
add a comment |
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
add a comment |
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
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
windbg pykd
asked Jan 2 at 14:52
DominiqueDominique
2,12342042
2,12342042
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
>>> targetSystem().desc
u'64-bit Kernel bitmap dump: C:\Users\User\AppData\Local\Temp\000030a40_memory.dmp'
desc returns the same string as ||
add a comment |
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.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
>>> targetSystem().desc
u'64-bit Kernel bitmap dump: C:\Users\User\AppData\Local\Temp\000030a40_memory.dmp'
desc returns the same string as ||
add a comment |
>>> targetSystem().desc
u'64-bit Kernel bitmap dump: C:\Users\User\AppData\Local\Temp\000030a40_memory.dmp'
desc returns the same string as ||
add a comment |
>>> targetSystem().desc
u'64-bit Kernel bitmap dump: C:\Users\User\AppData\Local\Temp\000030a40_memory.dmp'
desc returns the same string as ||
>>> targetSystem().desc
u'64-bit Kernel bitmap dump: C:\Users\User\AppData\Local\Temp\000030a40_memory.dmp'
desc returns the same string as ||
answered Jan 4 at 9:39
ussrheroussrhero
47125
47125
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Jan 3 at 14:42
Thomas WellerThomas Weller
29.2k1169141
29.2k1169141
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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