Kofax - Configure ProcDump to Create Crash Dumps
Applies to
Kofax Capture ALL
Summary
ProcDump is a utility whose primary purpose is monitoring an application for CPU spikes, and generating crash dumps during a spike that an administrator or developer can use to determine the cause of the spike.
Answer/Solution
Steps to Configure ProcDump to Create Crash Dumps:
Download Procdump from the Microsoft Sysinternals download site.
Unzip the downloaded Zip file to a local path. For example: C:\Temp
Open a Command Prompt "Run" (Via right mouse click> Run as Administrator), and change directory to the ProcDump local path folder.
Run the following command:
procdump -e -t -ma processnamehere.exe C:\TempReproduce the problem.
If it's a crash-related problem, a DMP file will be created in the C:\Temp folder. If it's a hang/memory leak-related problem, press Ctrl + C to end monitoring without terminating the process, and a DMP file will be created.
If requested by Kofax Technical Support personnel, send the DMP file to Kofax Technical Support for review. Before sending, please compress the the DMP file (Zip, etc.).
If the process fails to cause the dump to be created, and it's not causing an un-handled exception, then use the following command to force the dump:
procdump -ma processnamehere.exe C:\Temp
Try the followiung if you get the following message: Multiple processes match the specified name.
procdump -ma <process_PID> (where process_PID is the process identifier)
CASO Knowledge Base