It's looking a lot like your Windows System is corrupted pretty badly.
If Windows is on D, and there are not other drives attached internally or externally, then there must be at least two partitions on the hard drive you are attempting to boot from.
When you choose to run a command prompt from the Recovery screen, are you able to view the contents of D partition, by typing
dir and hitting
Enter key?
Also can you change directory to C drive by typing
cd c:\ and hitting
enter key. If you can what is on that partition when you type
dir and hit
enter key to list the directory contents?
I'm wondering whether or not you can use the
xcopy command to copy important files you do not want to lose to a USB pen drive:
- For example, assuming D drive is where your Windows OS is, and your Username for signing into Windows is Saul, and when you plug in a USB pen drive and its assigned Letter E, then to copy the contents of your Documents folder, the command would be like so:
xcopy D:\Users\Saul\Documents\*.* E: /s /e /f
That command would copy all files in Documents and any sub folders whether or not they are empty or not to your E drive (the usb pendrive). The /f flag displays the Source path and file name of file being copied, then the final path ( in this case E:\ )
You could attempt to create a bootable USB pendrive, with Windows 10, to perform a install over the top of your current install ( choosing to save files and documents), but its difficult to tell whether that will succeed given the errors you are already getting.
I'm thinking a clean install, i.e. formatting the hard drive and installing a clean Windows 10 onto it would more likely result in a happy ending — assuming the hard drive itself does not have corrupted sectors, or is failing.
To that end, from a command prompt you might want to spend some time running a checkdisk over it:
You could also attempt to salvage that bootres.dll file by executing a System File Check in an offline mode from the command prompt:
- sfc /scannow /offbootdir=d:\ /offwindir=d:\windows
Note: The above command assumes your Windows OS is trully installed on D partition. If its actually C partition, then adjust the command appropriately.