- Download and install debugging tools for Windows on the machine/server running the Node Manager.
https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/debugger-download-tools
https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk
- Create a folder in which the dumps will be captured. e.g: C:\dumps
- Launch the Windows command line with Admin privileges.
- Browse to the Debugging tools installation folder.
e.g: C:\Program Files (x86)\Windows Kits\10\Debuggers\x64>adplus -crash -p 5096 -o C:\dumps
-p process ID
The -p switch is used to specify the process ID (PID) of a process that you want ADPlus to analyze.
-o output directory
This switch instructs ADPlus where to put the debug output files.