Blue Screen. Won't boot. Restart loop. Troubleshooting options not working.

Silver_3

Commendable
Jun 29, 2016
2
0
1,510
My PC crashed recently and since has gone into the blue screen of death. I have followed the troubleshooting options available but none work. Won't reset or restore and can't repair itself. What has gone wrong and what can I do about it?
 
Solution
Did you make a Win 10 installer yet?

Resolution

A bootable USB or DVD with Windows 7 or higher is needed to bring up the Command Prompt.

Bring up the command prompt:

1. Boot from any DVD or USB Windows 7, 8, or 10 media.

2. Once you have reached the Windows Setup screen (where you select the Language, Time and Keyboard settings), press the SHIFT + F10 keys to bring up the Command Prompt.

Find out whether your disk is set to GUID Partition Table (GPT) or Master Boot Record (MBR):
1. In the Command Prompt, type diskpart and press Enter.

2. Type list disk and press Enter.

3, Look for your disk and see if the GPT column has an asterisk (*) – this will indicate the disk is GPT. If no asterisk is...

Colif

Win 11 Master
Moderator
What did you do to repair it?

Did you run SFC /scannow in a command prompt with admin rights?

Do you have a Win 10 installer?

If not, download this too on another PC: Win 10 Media Creation Tool/ amd use it to make a Win 10 installer on USB or DVD

Now is there anything you want to save off PC? Either put hdd into other PC as a secondary, and copy off it, or try this: http://www.howtogeek.com/howto/windows-vista/use-ubuntu-live-cd-to-backup-files-from-your-dead-windows-computer/

So if you managed to copy everything off PC you want to save, I would use that USB to do a fresh install following this: http://www.tenforums.com/tutorials/1950-windows-10-clean-install.html
 

Silver_3

Commendable
Jun 29, 2016
2
0
1,510


Hi Colif. Thanks for the answer. I was going to try this but it seems things have changed. Now when I turn on the pc it is just a black screen with white writing at the top saying "an operating system wasn't found. Try disconnecting any drives that don't contain an operating system. press ctrl+alt+del to restart" and a flashing cursor under that. Restart just brings me back to the screen. Any ideas?
 

Colif

Win 11 Master
Moderator
Did you make a Win 10 installer yet?

Resolution

A bootable USB or DVD with Windows 7 or higher is needed to bring up the Command Prompt.

Bring up the command prompt:

1. Boot from any DVD or USB Windows 7, 8, or 10 media.

2. Once you have reached the Windows Setup screen (where you select the Language, Time and Keyboard settings), press the SHIFT + F10 keys to bring up the Command Prompt.

Find out whether your disk is set to GUID Partition Table (GPT) or Master Boot Record (MBR):
1. In the Command Prompt, type diskpart and press Enter.

2. Type list disk and press Enter.

3, Look for your disk and see if the GPT column has an asterisk (*) – this will indicate the disk is GPT. If no asterisk is found, then the disk is set as MBR.

4. Type exit and press Enter.

If the type is MBR:

1. From the Command Prompt, type dir a: and press Enter.

If drive A: is found and a directory is displayed, check for the \Windows folder in the directory. If it is there, that is the System Drive. Skip to step 2.

If the drive is not found or it doesn’t contain the \Windows folder, type dir b: and press Enter. Continue through the alphabet until the drive with the \Windows folder is found, but skip the X: drive. That will be the install files from the USB or DVD you are using. The most common location is the C: drive, so that example will be used in the rest of the article.

2. Once it is found, type:bcdboot C:\Windows /S C:

In this case, C is the drive where Windows folder was found. If the Windows folder is on a different drive, use that drive letter instead of “C” in the bcdboot command above.

3. The message Boot files successfully created must be shown before you can continue.

4. Type: diskpart and press Enter.

5. Type: list disk and press Enter.

6. Type: sel disk C and press Enter.

In this case, C is the drive where Windows folder was found. If the Windows folder is on a different drive, use that drive letter instead of “C” in the sel disk command above.

7. Type: list vol and press Enter.

8. Type: sel vol C and press Enter.

In this case, C is the drive where Windows folder was found. If the Windows folder is on a different drive, use that drive letter instead of “C” in the sel disk command above.

9. Type: active and press Enter.

You should get a confirmation that the volume has been successfully set as active. If you don’t get the confirmation, it means that either the disk is set to GPT (not MBR), or there is a problem with the disk. Make sure you are working with the right disk.

10. Type: exit and press Enter.

11. Reboot the device - you can do this quickly from the command prompt by typing: shutdown -f -r -t 00 and press Enter.


If the type is GPT:

1. From the Command Prompt, type dir a: and press Enter.

If drive A: is found and a directory is displayed, check for the \Windows folder in the directory. If it is there, that is the System Drive. Skip to step 2.

If the drive is not found or it doesn’t contain the \Windows folder, type dir b: and press Enter. Continue through the alphabet until the drive with the \Windows folder is found, but skip the X: drive. That will be the install files from the USB or DVD you are using. The most common location is the C: drive, so that example will be used in the rest of the article.

2. Type: diskpart and press Enter.

3. Type: list disk and press Enter

4. Type: sel disk C and press Enter.

In this case, C is the drive where Windows folder was found. If the Windows folder is on a different drive, use that drive letter instead of “C” in the sel disk command above.

5. Type: list part and press Enter.

6. Look for the partition labeled as System.

7. Once it is found, assign the letter R to the partition. If the letter R is already taken, you can choose any unassigned letter. To assign the letter type: assign letter=r: and press Enter.

8. Type: exit and press Enter.

9. Return to the command prompt, type the following one line at a time, pressing Enter after each line:
cd /d r:\EFI\Microsoft\Boot\
ren BCD BCD.bak
bcdboot c:\Windows /l en-us /s m: /f UEFI


Note The /l en-us part of the command sets the Windows language to English. To set a different language, replace en-us with a different language code (such as de-de for German).

10. Reboot the device - you can do this quickly from the command prompt by typing: shutdown -f -r -t 00 and pressing Enter.

https://support.microsoft.com/en-us/kb/3103656
 
Solution