18

Are there any tools to dump the running application from memory in Windows 7?

Gareth
  • 19,080
abmv
  • 325

3 Answers3

19

just "right click" the process in the taskmanager and select "create memory dump"

alt text

Gareth
  • 19,080
akira
  • 63,447
2

Simplest is probably procdump from SysInternals.

The Debugging Tools for Windows gives more advanced options (e.g. automatically dump the process on certain conditions).

Richard
  • 9,172
0

You can use adplus -crash -p <process id> -o <place to put the dump> from command line if the process you want to dump is crashing at some point. see here

panny
  • 675