39

I recently ran the chkdsk in Windows 7 on my local C: drive. After chkdsk completed, the results flashed on the screen for a few seconds and then the computer booted up. I wasn't able to read the results in time. Are the results saved to a text file somewhere?

CC BY-SA 2.5

    4 Answers 4

    Reset to default
    40

    As Randolph mentions, it is in the Event Viewer. More specifically, here:

    Control Panel -> Administrative Tools -> Event Viewer -> Windows Logs -> Application -> Wininit

    Wininit is found under the source column.

    CC BY-SA 2.5
    2
    • Thanks - it was 50 / 50 between System and Application. I've updated my answer as well.
      – user3463
      Commented Nov 23, 2010 at 22:05
    • In XP there was, since then I haven't had a use for a log, so I don't know. However, you can run CHKDSK from the command line and force it to output a text file log: CHKDSK C: /F > C:\LOG.TXT
      – Paul
      Commented Nov 23, 2010 at 22:22
    19

    To add to Paul's post:

    Go to Start, then type in 'event viewer' (without the quotes) in the search bar, and then select 'Event Viewer'.

    Since the Event Viewer could list tens of thousands or more events, this could make finding the 'Wininit' event (the chkdsk log) very hard.

    To make this easier, when in "Event Viewer » Windows Logs » Application", go to "Filter Current Log... » Filter » Event sources » check 'Wininit'":

    Filter Current Log... > Filter > Event sources > check 'Wininit'

    This will make the Event Viewer only show sources that are 'Wininit' (chkdsk logs only).


    There are also chkdsk .log files, viewable in a text editor, located at [Drive Letter]:\System Volume Information\Chkdsk. You can only view it if Control Panel » Folder Options » 'Hidden files and folders' » 'Show hidden files, folders, and drives' is selected, 'Hide protected operating system files' is unchecked and you took ownership of that folder.

    CC BY-SA 3.0
    3
    11

    Here's an alternative way to view the results (found here):

    1. Press the Windows + R keys to open the Run dialog, type powershell.exe, and press Enter.

    2. In PowerShell, copy and paste the command below, and press Enter. (see screenshot below) NOTE: To paste the copied command into PowerShell, you will just need to right click in PowerShell.

    3. Enter the command

      get-winevent -FilterHashTable @{logname="Application"; id="1001"}| ?{$_.providername –match "wininit"} | fl timecreated, message | out-file Desktop\CHKDSKResults.txt
      
    4. You will now have a CHKDSKResults.txt file created on your desktop that is the log file of your chkdsk scan results from Event Viewer.

    CC BY-SA 3.0
    5
    0

    Event Viewer, under System Application, but in some cases it won't show at all.

    CC BY-SA 2.5
    2

    You must log in to answer this question.

    Not the answer you're looking for? Browse other questions tagged.