Skip to main content
Skip table of contents

Create memory dump using ProcDump

In some cases logs are not enough to find reason. For this we need to get memory dump from running service.

There is several ways to take that. One way is to use Windows Task Manager but there is also other way to do it, example using Microsoft tool ProcDump. ProcDump is better option when application or service is crashing and to find reason there is need to make memory dump.

  1. Download ProcDump from Microsoft site

  2. Extract zip package to example C:\temp

  3. Then open Command Prompt “Run as administrator”

  4. Go to that folder where this ProcDump is extracted

  5. Then run command procdump -e -ma servicename.exe C:\temp

    1. This command run ProcDump and start monitoring wanted service

    2. When this service example crash, this generate memory dump file to C:\temp folder, where this can be zip and send to forward

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.