Retrieving Windows chkdsk log and date from Event Viewer

The following code will retrieve the latest chkdsk log from the Windows 10 event viewer. I would also like to add whatever code is necessary to also retrieve the date of the event.
Thanks for your reply.

Get-EventLog -LogName Application -Source chkdsk | Select-Object -First 1 -ExpandProperty message

Hello, mrfixit!
Think this would be helpfull:

Get-EventLog -LogName:Application -Source:chkdsk | Select-Object -Property:TimeGenerated,Message -first:1
Get-EventLog -LogName:Application -Source:chkdsk | Select-Object -Property:TimeGenerated,Message -first:1

While this script does retrieve the time stamp from the event viewer, it no longer shows the details of the log. Was it implied that this cannot be achieved with one line of script? :slightly_smiling_face:

Thanks for your reply.