Configure ProcDump to Create Crash Dumps
Article # 3030593 - Page views: 759
Issue
What is ProcDump and how can I use it to troubleshoot Capture issues?
- What are the Steps to Configure ProcDump to Create Crash Dumps?
Cause
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.
Solution
- 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:\Temp
- Reproduce 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, pressCtrl + 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 following if you get the following message: Multiple processes match the specified name.
procdump -ma <process_PID>
(where process_PID is the process identifier)
Level of Complexity
Moderate
Applies to
Product | Version | Build | Environment | Hardware |
---|---|---|---|---|
Kofax Capture |
11.1 11.0 |
ALL | ALL | N/A |
Kofax Express | 3.3 3.2 |
ALL | ALL | N/A |
Kofax Front Office Server | 4.3 4.1 |
ALL | ALL | N/A |
Kofax Import Connector | 2.10 2.9 2.8 2.7 |
ALL | ALL | N/A |
Kofax VRS | 5.2 5.1.2 5.1.1 |
ALL | ALL | N/A |
Article # 3030593