Friday 25 June 2021

Microsoft ProcDump tool lets you generate crash dump files to troubleshoot problems with apps, and here's how to use the command-line tool on Windows 10.

On Windows 10, ProcDump is a command-line tool specifically designed to create crash dump files manually. A "dump" is a special file that contains (all or parts) of the data loaded in memory at the time dump was triggered. Usually, you would use this file for analysis to determine the root of a problem with an app or the OS.

Although Windows 10 can create crash dumps files automatically when it encounters an error that it cannot handle, sometimes you may still need to generate these files manually. For example, if you are a developer and you are testing a new application. Or when an app is not responding or constantly crashing, and you need to send the details to the software vendor support to investigate the issue.

Whatever the reason might be, the Microsoft ProcDump tool is a nifty tool you can use in Command Prompt to create a crash dump file in many different ways, including generating a minidump file using the app or process name or process ID. You can also use the tool to create multiple dumps at different intervals automatically. Or you can specify other criteria, such as when the process reaches a specific processor usage, the app is unresponsive, and more.

In this Windows 10 guide, we will walk you through the steps to use the Microsoft ProcDump tool to generate dump files manually on your device.

How to install ProcDump on Windows 10

To install the ProcDump command-line tool on Windows 10, use these steps:

  1. Open ProcDump official page.
  2. Click the Download ProcDump link.

  3. Save the file on the device.
  4. Open the zip folder.
  5. Click the Extract all option from the "Compressed Folder Tools" tab.

  6. Confirm a path to extract the files.

  7. Check the Show extracted files when complete option.
  8. Click the Extract button.

Once you complete the steps, you can use ProcDump with Command Prompt to create dumps files on Windows 10.

How to use ProcDump on Windows 10

The ProcDump tool includes many options to record and create dump files. In the steps below, we will show you a bunch of examples to create a dump file for a specific application and different scenarios, including when a process is unresponsive, crashes, uses a significant amount of processor resources, and more.

To get started with the ProcDump tool, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to navigate to the folder containing the ProcDump tool and press Enter:

    cd C:\PATH\TO\PROCDUMP

    In the command, make sure to update the path with the folder's location with the ProcDump tool.

    For example, this command opens the tool location inside the "Downloads" folder:

    cd C:\Users\username\Documents\Procdump

  4. Type the following command to create a minidump file of a running app and press Enter:

    procdump APP-NAME

    In the command, replace APP-NAME for the executable name of the app.

    This example creates a dump file for the File Explorer app:

    procdump explorer

  5. Type the following command to create a dump file using the process ID of the app and press Enter:

    procdump PROCESS-ID

    In the command, replace PROCESS-ID with the actual ID of the process or application.

    This example creates a dump file for File Explorer with the process ID of 6468:

    procdump 6468

    Quick tip: You can always confirm the process ID (PID) of an app in the Details tab of Task Manager or using the tasklist command.

  6. Type the following command to create a full dump file for an application and press Enter:

    procdump -ma APP-OR-PID

    In the command, replace APP-OR-PID for the name or process ID of the app.

    This example creates a full dump file for File Explorer:

    procdump -ma explorer

    Quick note: A full dump file contains everything available in memory related to the application. In contrast, a minidump file is only several megabytes in size, and it includes basic information about the application.

  7. Confirm the location of the .dmp file.

After you complete the steps, the dump file will be generated in the ProcDump folder.

Create multiple minidumps manually

To use ProcDump to create multiple minidump files on Windows 10, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to navigate to the folder containing the ProcDump tool and press Enter:

    cd C:\Users\username\Documents\Procdump

  4. Type the following command to write five minidumps 15 seconds apart from one another and press Enter:

    procdump -s 15 -n 5 PROCESS-NAME

    In the command, replace the PROCESS-NAME for the name of the process you want to write a dump. Also, remember to update the 15 for the number of seconds to wait before generating a new file and 5 for the number of dump files you want to create.

    This example writes five dump files for the Windows Explorer process:

    procdump -s 15 -n 5 explorer

Once you complete the steps, the tool will create (in this case) five dump files 15 seconds apart from one another.

Create minidumps based on processor usage

To write a dump file after the app system usage reaches a specific threshold, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to navigate to the folder containing the ProcDump tool and press Enter:

    cd C:\Users\username\Documents\Procdump

  4. Type the following command to write a minidump file when the process exceeds the 20% processor usage for 15 seconds and press Enter:

    procdump -c 20 -s 15 PROCESS-NAME

    In the command, replace the PROCESS-NAME for the name of the process you want to write a dump. Also, remember to replace 20 and 15 for processor usage and a wait time in seconds.

    This example writes a dump file of the explorer.exe process that uses over 20% of processor resources for 15 seconds:

    procdump -c 20 -s 15 explorer

  5. (Optional) Type the following command to write an error dump file when a specific app pushes processor usage above 20% for 10 seconds and press Enter:

    procdump PROCESS-NAME -p "\Processor(_Total)\% Processor Time" 20

    This example writes a dump file of the explorer.exe process that uses over 20% of processor resources for 10 seconds:

    procdump explorer -p "\Processor(_Total)\% Processor Time" 20

After you complete the steps, the command will monitor the application, and when it exceeds the processor usage for the time you specified, then a dump file will be generated.

Create minidumps for unresponsive process

To create a minidump as soon as a process is unresponsive, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to navigate to the folder containing the ProcDump tool and press Enter:

    cd C:\Users\username\Documents\Procdump

  4. Type the following command to write a minidump file when a process becomes unresponsive for more than five seconds and press Enter:

    procdump -h PROCESS-NAME DUMP-NAME.dmp

    In the command, replace the PROCESS-NAME for the name of the process you want to monitor and DUMP-NAME for the file's name.

    This example writes a dump when the Windows Explorer process becomes unresponsive for five seconds:

    procdump -h explorer explorer-unresponsive-data.dmp

Once you complete the steps, a dump file will be written to the ProcDump folder when the application becomes unresponsive.

Create minidump during launch of a process

To launch an app, keep monitoring it, and write a dump file when an exception occurs, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to navigate to the folder containing the ProcDump tool and press Enter:

    cd C:\Users\username\Documents\Procdump

  4. Type the following command to start an app and create a dump file when it crashes, and press Enter:

    procdump -e 1 -f "" -x C:\PATH\TO\STORE\DUMP "C:\PATH\TO\APP.EXE"

    In the command, replace C:\PATH\TO\STORE\DUMP for the folder location to store the dump. Also, change C:\PATH\TO\APP.EXE for the path of the app you want to monitor and create a dump.

    This example creates a dump file of Google Chrome when it crashes and stores the "dump" file inside the dumps folder:

    procdump -e 1 -f "" -x C:\dumps "C:\Program Files\Google\Chrome\Application\chrome.exe

After you complete the steps, the tool will launch and monitor the app, and when it crashes, it will create a dump file in the folder location you specified.

Activate Postmortem Debugger to create full dump automatically

You can also register the tool as a Postmortem Debugger to allow ProcDump to monitor and automatically write a full dump when one or more processes crash. Here's how:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to navigate to the folder containing the ProcDump tool and press Enter:

    cd C:\Users\username\Documents\Procdump

  4. Type the following command to monitor and create a full dump file when one or more processes crash and press Enter:

    procdump -ma -i C:\PATH\TO\STORE\DUMP

    In the command, replace C:\PATH\TO\STORE\DUMP for the location to store the dump file.

    This examples stores the full dump file in the "dumps" folder:

    procdump -ma -i C:\dumps

Once you complete the steps, the ProcDump tool will monitor the system, and it will create dump files whenever an application crashes.

We are focusing only on some basic examples. You can always run the procdump -e command to review all the available options.

More Windows 10 resources

For more helpful articles, coverage, and answers to common questions about Windows 10, visit the following resources:



0 comments:

Post a Comment

ShortNewsWeb

Blog Archive

Categories

'The Woks of Life' Reminded Me to Cook With All the Flavors I Love (1) 13 of the Best Spooky Episodes From (Mostly) Un-Spooky Shows (1) 1Password Now Generates QR Codes to Share Wifi Passwords (1) 2024 (15) 30 Movies and TV Shows That Are Basically 'Competence Porn' (1) 30 of the Most Obscenely Patriotic Movies Ever (1) 31 Spooky Movies to Watch Throughout October (1) 40 Netflix Original Series You Should Watch (1) Active Directory (1) Adobe's AI Video Generator Might Be as Good as OpenAI's (1) AIX (1) and Max Bundle Isn't a Terrible Deal (1) Apache (2) Apple Intelligence Is Running Late (1) Apple Intelligence's Instructions Reveal How Apple Is Directing Its New AI (1) August 18 (1) August 4 (1) August 5 (1) Backup & Restore (2) best practices (1) bleepingcomputer (44) Blink Security Cameras Are up to 68% Off Ahead of Prime Day (1) CentOS (1) Configure PowerPath on Solaris (1) Documents (2) Don't Rely on a 'Monte Carlo' Retirement Analysis (1) Eight Cleaning Products TikTok Absolutely Loves (1) Eight of the Best Methods for Studying so You Actually Retain the Information (1) Eight Unexpected Ways a Restaurant Can Mislead You (1) Elevate Your Boring Store-Bought Pretzels With This Simple Seasoning Technique (1) Everything Announced at Apple's iPhone 16 Event (1) file system (6) Find (1) Five Red Flags to Look for in Any Restaurant (1) Flappy Bird's Creator Has Nothing to Do With Its 'Remake' (1) Four Reasons to Walk Out of a Job Interview (1) Four Signs Thieves Are Casing Your House (1) gaming (1) Hackers Now Have Access to 10 Billion Stolen Passwords (1) How I Finally Organized My Closet With a Digital Inventory System (1) How to Cancel Your Amazon Prime Membership After Prime Day Is Over (1) How to Choose the Best Weightlifting Straps for Your Workout (1) How to Keep Squirrels Off Your Bird Feeders (1) How to Set Up Your Bedroom Like a Hotel Room (and Why You Should) (1) How to Take a Screenshot on a Mac (1) How to Take Full Control of Your Notifications on a Chromebook (1) Hulu (1) If You Got a Package You Didn't Order (1) If You Hate Running (1) Important Questions (17) Install and Configure PowerPath (1) interview questions for linux (2) Is ‘Ultra-Processed’ Food Really That Bad for You? (1) Is Amazon Prime Really Worth It? (1) It Might Be a Scam (1) July 14 (1) July 21 (1) July 28 (1) July 7 (1) June 30 (1) LifeHacker (97) Linux (36) Meta Releases Largest Open-Source AI Model Yet (1) Monitoring (3) music (688) My Favorite 14TB Hard Drive Is 25% Off Right Now (1) My Favorite Amazon Deal of the Day: Apple AirPods Max (2) My Favorite Amazon Deal of the Day: Google Nest Mesh WiFi Router (1) My Favorite Amazon Deal of the Day: Google Pixel 8 (1) My Favorite Amazon Deal of the Day: SHOKZ OpenMove Bone Conduction Headphones (1) My Favorite Tools for Managing Cords and Cables (1) Nagios (2) Newtorking (1) NFS (1) OMG! Ubuntu! (688) Oracle Linux (1) oracleasm (3) osnews (21) Password less communication (1) Patching (2) Poaching Is the Secret to Perfect Corn on the Cob (1) powerpath (1) Prioritize Your To-Do List By Imagining Rocks in a Jar (1) Red Hat Exam (1) register (42) Rsync (1) Safari’s ‘Distraction Control’ Will Help You Banish (Some) Pop Ups (1) Samba (1) Scrcpy (1) September 1 (1) September 15 (1) September 2 (1) September 22 (1) September 23 (1) September 30 (1) September 8 (1) Seven Home 'Upgrades' That Aren’t Worth the Money (1) ssh (1) Swift Shift Is the Window Management Tool Apple Should Have Built (1) System hardening (1) Target’s Answer to Prime Day Starts July 7 (1) Tech (9533) Tech CENTRAL (15) Technical stories (98) technpina (6) The 30 Best Movies of the 2020s so Far (and Where to Watch Them) (1) The 30 Best Sports Movies You Can Stream Right Now (1) The Best Deals on Robot Vacuums for Amazon’s Early Prime Day Sale (1) The Best Deals on Ryobi Tools During Home Depot's Labor Day Sale (1) The Best Early Prime Day Sales on Power Tools (1) The Best Movies and TV Shows to Watch on Netflix This Month (1) The Best Places to Go When You Don't Want to Be Around Kids (1) The Best Strategies for Lowering Your Credit Card Interest Rate (1) The Best Ways to Store All Your Bags and Purses (1) The New Disney+ (1) The Two Best Times of Year to Look for a New Job (1) These Meatball Shots Are My Favorite Football Season Snack (1) These Milwaukee Tools Are up to 69% off Right Now (1) This Google Nest Pro Is 30% Off for Prime Day (1) This Peanut Butter Latte Isn’t As Weird As It Sounds (1) This Tech Brand Will Get the Biggest Discounts During Prime Day (1) Three Quick Ways to Shorten a Necklace (1) Today’s Wordle Hints (and Answer) for Monday (4) Today’s Wordle Hints (and Answer) for Sunday (11) Try 'Pile Cleaning' When Your Mess Is Overwhelming (1) Try 'Rucking' (1) Ubuntu News (345) Ubuntu! (1) Unix (1) Use This App to Sync Apple Reminders With Your iPhone Calendar (1) veritas (2) Videos (1) Was ChatGPT Really Starting Conversations With Users? (1) Watch Out for These Red Flags in a Realtor Contract (1) Wayfair Is Having a '72-Hour Closeout' Sale to Compete With Prime Day (1) We Now Know When Google Will Roll Out Android 15 (1) What Is the 'Die With Zero' Movement (and Is It Right for You)? (1) What Not to Do When Training for a Marathon (1) What's New on Prime Video and Freevee in September 2024 (1) Windows (5) You Can Easily Add Words to Your Mac's Dictionary (1) You Can Get 'World War Z' on Sale for $19 Right Now (1) You Can Get a Membership to BJ's for Practically Free Right Now (1) You Can Get Beats Studio Buds+ on Sale for $100 Right Now (1) You Can Get Microsoft Visio 2021 Pro on Sale for $20 Right Now (1) You Can Get This 12-Port USB-C Hub on Sale for $90 Right Now (1) You Can Get This Roomba E5 Robot Vacuum on Sale for $170 Right Now (1) You Can Hire Your Own Personal HR Department (1) You Can Set Different Scrolling Directions for Your Mac’s Mouse and Trackpad (1)

Recent Comments

Popular Posts

Translate

My Blog List

Popular

System Admin Share

Total Pageviews