(That's some time since this question was posted, but it worth an answer)
(For convenience, I'll use procdump
(instead of procdump64
)
From the question, it's implied that executing the following should just work (in the OP's use case, writing a dump to C:\Users\Administrator
):
procdump -i
...but at least on my end, it doesn't.
It seems mandatory to specifiy what type of dump should be written ("Full" (-ma
), "Mini" (-mm
), etc). The dump types can be listed by simply executing procdump
.
Back to the question, the following should work,:
procdump -ma -i c:\dumps
Note that if the destination folder requires administrator permissions, this might not work, even if procdump
is ran under a run-as-administrator cmd (that's what I experienced).