Win 10 chkdsk problems

My girlfriends has been booting and running extremely slow. I have ran a windows RAM test and came back with no errors. I have ran a CHKDSK command and it came back with orphan file errors but I am unsure of what to do next. Someone please help. When I run a check disk this is what I get:

C:\windows\system32>chkdsk
the type of the file system is NTFS.
Volume Lable is Windows.

WARNING! /F parameter not specified.
Running CHKDSK in read-only mode.

Stage 1: Examining basic file system Structure ...

813568 file records processed.

file verification completed.
File record segment 495C5 is an orphan
File record segment 495C7 is an orphan
File record segment 5DCF6 is an orphan
File record segment 5E157 is an orphan
File record segment 5E5B5 is an orphan
File record segment 5E5B7 is an orphan
File record segment 5EA15 is an orphan
File record segment 5EA16 is an orphan
File record segment 5EA17 is an orphan
File record segment 5EE77 is an orphan
File record segment 5F7FE is an orphan
File record segment 5F7FF is an orphan
File record segment 5FC5E is an orphan
File record segment 5FC5F is an orphan
File record segment 6051F is an orphan
File record segment 6B805 is an orphan
File record segment 6B806 is an orphan
File record segment 900D5 is an orphan
File record segment 900D6 is an orphan
File record segment 90536 is an orphan
File record segment 90537 is an orphan
File record segment 90996 is an orphan
File record segment 90996 is an orphan
File record segment 90997 is an orphan
File record segment 90DF5 is an orphan
File record segment 90DF6 is an orphan
File record segment 90DF7 is an orphan
File record segment 91255 is an orphan
File record segment 91256 is an orphan
File record segment 91257 is an orphan
File record segment 916B5 is an orphan
File record segment 916B7 is an orphan
File record segment 92495D is an orphan
File record segment 92495F is an orphan

80733 large file records processed.


Errors found. CHKDSK cannot continue in read-only mode.

C:\WINDOWS\system32>





ZF
 
Hi See if this helps. https://www.tekrevue.com/tip/fix-hard-drives-chkdsk-windows-10/
PS If errors are found, you should watch the drive closely as it may be a sign the Drive is getting ready to fail. Here's link from HTG that explains chkdsk very well.
https://www.howtogeek.com/howto/windows-vista/guide-to-using-check-disk-in-windows-vista/

Simply running the CHKDSK command in Windows 10 will only display the disk’s status, and won’t fix any errors present on the volume. To tell CHKDSK to fix the drive, we need to give it parameters. After your drive letter, type the following parameters separated by a space each: “/f /r /x”.

The “/f” parameter tells CHKDSK to fix any errors it finds; “/r” tells it to locate the bad sectors on the drive and recover readable information; “/x” forces the drive to dismount before the process starts.
 
Last edited:
I would run chkdsk from admin account with /f switch on. Then examine result in event viewer before doing anything else. Slowness and fragments might be bad software, so I would scan drive after chkdsk.
 
CHKDSK:
When a system is booted, it inspects the DIRTY BIT to determine if the system was closed normally, as this bit gets reset normally.

If it is OFF, the system will boot normally into the desktop and SET THE DIRTY BIT.
OTHERWISE, most systems will invoke some kind of HD verification process before continuing.
  • Linux runs FSCK
  • Mac runs diskutil verifyVolume /
  • Windows runs CHKDSK c:
When complete, the dirty bit is reset
 
Back