Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generate memory dump for a windows service that stops unexpectedly

How do I generate a memory dump for a windows service that stops unexpectedly?

like image 392
Imran Azad Avatar asked Sep 07 '25 15:09

Imran Azad


1 Answers

1) Download ProcDump

2) At an admin command prompt, in the same directory as procdump, type this:

procdump -ma -e <serviceprocessname>.exe

3) Wait for crash and dump will be generated

like image 99
Matt Small Avatar answered Sep 10 '25 07:09

Matt Small