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.
That's it now upload the newly created zip file to your post, so your helper can review the files.
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.