From the screenshot provided, I can see the bug check code is: 0x0000007A.
A list of bug check codes can be found on this page: Bug Check Code Reference. In this case we have: KERNEL_DATA_INPAGE_ERROR.
I can also see from the screenshot the parameters of the bugcheck, the important one here being 0xC000009C. The documentation reveals this to mean:
0xC000009C, or STATUS_DEVICE_DATA_ERROR, typically indicates bad blocks (sectors) on the hard disk.
The first thing to try therefore would be to run chkdsk againt the drive. Running with /r will find physical disk errors in the file system and attempt to recover data from any affected disk sectors.
If you can therefore boot into a command prompt, run:
chkdsk /r
This should hopefully help.
TIP: Bug check codes and parameters sometimes point you in the right direction, but typically a dump file is required. A mini-dump may be useful, depending on the issue but it may take a complete memory dump.
Given the info here: https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-0x7a--kernel-data-inpage-error and you have "0xC000009C, or STATUS_DEVICE_DATA_ERROR, typically indicates bad blocks (sectors) on the hard disk." Are you able to run a
– HelpingHand – 2019-07-20T21:36:05.103chkdsk /R
i have access to a cmd on the windows repair screen, i will give it a try – yuribsl – 2019-07-20T22:38:31.070
2
Possible duplicate of Kernel Data Inpage Error
– agtoever – 2019-07-20T22:38:42.290@HelpingHand worked like a charm man ty vm – yuribsl – 2019-07-21T01:34:10.440
@yuribsl - I've posted it as an answer to hopefully help others in the future. Regards. – HelpingHand – 2019-07-21T07:30:17.200