inoffical wrapper for ProcDump https://docs.microsoft.com/en-us/sysinternals/downloads/procdump
Project description
Inofficial Pyton wrapper for ProcDump - Windows Sysinternals | Microsoft Docs
Very easy to use:
from PyPDump import ProcDump
dumpfile = r"C:\MiniDumpWithFullMemoryx.dmp"
pid = 16544
createdump = True
if createdump:
erg = (
ProcDump(executeable=r"C:\Program Files\procdump.exe")
.o()
.ma()
.add_own_parameter_or_option(f"{pid}")
.add_target_file_or_folder([dumpfile])
.run()
))
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
PyPDump-0.31.tar.gz
(10.0 kB
view hashes)
Built Distribution
PyPDump-0.31-py3-none-any.whl
(10.6 kB
view hashes)