How To Create A Zipped MiniDump Folder With A Batch File.

How To Create A Zipped MiniDump Folder With A Batch File. 2024-08-30

  • Hi there and welcome to PC Help Forum (PCHF), a more effective way to get the Tech Support you need!
    We have Experts in all areas of Tech, including Malware Removal, Crash Fixing and BSOD's , Microsoft Windows, Computer DIY and PC Hardware, Networking, Gaming, Tablets and iPads, General and Specific Software Support and so much more.

    Why not Click Here To Sign Up and start enjoying great FREE Tech Support.

    This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.
  • Hello everyone We want to personally apologize to everyone for the downtime that we've experienced. We are working to get everything back up as quickly as possible. Due to the issues we've had, your password will need to be reset. Please click the button that says "Forgot Your Password" and change it. We are working to have things back to normal. Emails are broken but should be fixed soon. Thank you all for your patience. Thanks, PCHF Management
When dealing with system crashes and blue screen errors, analyzing dump files is crucial for troubleshooting. To facilitate the sharing and reviewing of these files, it’s often useful to compress them into a zipped folder. Here’s a detailed step-by-step guide on how to do this:



Install 7-zip from here.


Create and run batch file.


Open a notepad and copy the entire content of the code box below.
Do not copy the word code!
Paste the txt into the notepad. Save the file to your desktop as GetDump.bat
Now you will right click the on GetDump.bat and run as administrator.

Code:
@echo off
cd %USERPROFILE%\Desktop
mkdir NewFolder
cd C:\Windows
move "C:\Windows\Minidump\*.*" "%USERPROFILE%\Desktop\NewFolder"
"C:\Program Files\7-Zip\7z.exe" a "%USERPROFILE%\Desktop\NewFolder.zip" "%USERPROFILE%\Desktop\NewFolder"
exit

That's it now upload the newly created zip file to your post, so your helper can review the files.
Author
Malnutrition
Downloads
35
Views
321
First release
Last update

Ratings

0.00 star(s) 0 ratings

More resources from Malnutrition