"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Software tutorial > Read the Event Viewer Logs for Check Desk in Windows 10

Read the Event Viewer Logs for Check Desk in Windows 10

Published on 2024-08-05
Browse:352

This post will show how to read the Event Viewer logs for Check Disk scan results in Windows 10.

  • Way 1: To Read the Event Viewer Logs for Chkdsk in Event Viewer
  • Way 2: To Read Latest Event Viewer Logs for Chkdsk in PowerShell

Way 1: To Read the Event Viewer Logs for Check Disk in Event Viewer

Event Viewer is a Microsoft Management Console snap-in that allows you to browse and manage event logs. When you check a drive for errors, the detail results are stored as logs in Event Viewer, the steps below will show you how to read those logs.

Step 1: Open Event Viewer.

Press Win R keys, type eventvwr.msc and then click OK to open Event Viewer.

Read the Event Viewer Logs for Check Desk in Windows 10

Step 2: Expand open Windows Logs > Application. Then move to the right pane, click on Filter Current Log.

Read the Event Viewer Logs for Check Desk in Windows 10

Step 3: Check in Chkdsk and Wininit items in the Event sources from the drop-down menu.

Read the Event Viewer Logs for Check Desk in Windows 10

Step 4: Close the drop down sources by clicking on the blank area of Filter Current Log window, then click OK.

Read the Event Viewer Logs for Check Desk in Windows 10

Step 5: You will now see all available event logs for Chkdsk listed in the middle pane of Event Viewer.

Read the Event Viewer Logs for Check Desk in Windows 10

You can use the scroll bar on the right when reading information.

Way 2: To Read the Latest Event Viewer Logs for Chkdsk in PowerShell

You can read the Event Viewer log for Chkdsk (Check Disk) scan results via PowerShell command.

Step 1: Open the Windows PowerShell.

Press Win R keys to bring up the Run dialog, then type powershell and then click OK.

Read the Event Viewer Logs for Check Desk in Windows 10

Step 2: Copy and paste the command below you want to use into PowerShell, and then press Enter key.

Command to read Chkdsk log in PowerShell:

get-winevent -FilterHashTable @{logname="Application"; id="1001"}| ?{$_.providername –match "wininit"} | fl timecreated, message

Read the Event Viewer Logs for Check Desk in Windows 10

The following command is used to create CHKDSKResults.txt file on your desktop containing log:

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

Read the Event Viewer Logs for Check Desk in Windows 10

Step 3: You can now read the latest Event Viewer log for Chkdsk.

Read the Event Viewer Logs for Check Desk in Windows 10

Release Statement This article is reproduced at: https://www.isumsoft.com/windows-10/read-event-viewer-logs-for-check-disk-in-windows-10.html If there is any infringement, please contact [email protected] delete
Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3