Find Check Disk (CHKDSK) results

How to view Check Disk (CHKDSK) results.

There are three main ways of viewing the results of your CHKDSK scan. Below are the three options


EventViewer


Right click on the :eightstart: button -> Click on Event Viewer.



Inside Event Viewer look on the left menu and expand the folder Windows Logs -> Click on Application to load the events -> Right click on Application -> Select Find.



Type in chkdsk - > press Find next.



What will happen now is that the find function will do a search inside the event logs looking for the keyword chkdsk. Once the result is found look at the bottom half of the screen inside the General tab this has the results of the CHKDSK scan.



PowerShell


This powershell line will create a file on your desktop called CHKDSK_SCAN.txt. Exporting the file will make it easier to store the results for a future reference. This can also be used by System Administrators to collect records of the results for warranty purposes or for future reference.

Click on Start -> Inside the search box type in Powershell -> Select Powershell.



Inside the Powershell console window please enter the following command:

Code:
get-winevent -FilterHashTable @{logname="Application"; id="1001"}| ?{$_.providername –match "wininit"} | fl timecreated, message | out-file "$env:userprofile\Desktop\CHKDSK_SCAN.txt"



Go to your desktop and you should see a file called CHKDSK_SCAN.txt. All the results for your check disk scan will appear in this file.



ListChkdskResult (Automatic tool)


Download ListChkdskResult.exe (by SleepyDude) from Here, save the file to your desktop. Once the file has been downloaded please go to your desktop and double click on ListChkdskResult.exe. This scan only takes a few seconds to run, once the scan is complete a pop-up will open with all the CHKDSK from the most recent scan plus any previous scans.
 
Last edited by a moderator:
Re: How to view Check Disk (CHKDSK) results -- Windows 10

Updated the post - thanks!
 
Re: How to view Check Disk (CHKDSK) results -- Windows 10

Hi,

New link for my script ListChkdskResult.

Hi, SleepyDude!

I use your tool to read the chkdsk results and I include it in my canned speech. But it seems that every time I use it, the link becomes invalid. I mean I have to come here and copy the link once more and replace it in my canned to work. Otherwise I get an error. Is there a way for this to get fix?

Thanks in advanced!
 
Hi DR M,

I Don't know why you have problems with the link, its the same link you post for a long time!
 
Hi, SleepyDude!

I swear that until this morning when I clicked on the link above a Dropbox page was opening, where there was a Download link! I could not use the link in my canned twice, and everytime I had to come here to copy the link and correct my canned.

Now, there is a direct prompt to save or open the file, so all is good!

I have no idea why, but thank you!

Magic is in the air!
 
It's doing it again... I use the same canned, but the link in the canned is leading to an error. I have to come here and copy the link from your comment above. :(
 

Has Sysnative Forums helped you? Please consider donating to help us support the site!

Back
Top