Skip to main content

How to repair/fix the booting problem in Windows 7 or 8?


Problem with windows boot?


 Are you getting error message like
 

“Reboot and Select proper Boot device 
Or Insert Boot Media in selected Boot device “
  
while at startup?


 

Windows 8 has upgraded the desktop side by including a few tools within its troubleshooting asset. You can primarily attempt to fix the booting problem using Startup Repair

You can also choose cmd to fix this problem. The might be with MBR. Now what is MBR?

 

“MBR is one to boot your windows computer, it’s a small file which initiates the booting process

Discovering a corrupt MBR, boot sector, or Boot Configuration Data (BCD) is tedious process.Now I show how to fix this problem

How to repair/Fix the MBR in Windows 7 or Windows 8?

 

Then you can just follow the steps given below!

 

Step 1)

First of all, you will require a BOOTABLE DISC OR PEN DRIVE. It’s recommended that you isolate other storage devices like pen drive or external HDD from your computer and leave only the SSD/HDD.

 

Step 2)

Insert your DVD/pen drive and booting into the Windows 8 setup, choose

 “Repair your computer” in the below part of the window,

 

 

 Step 3)

Then select “Troubleshoot” and “Advanced options”. If you have a restore point created you can go back to that working copy of the OS .This is another Windows 8 feature.

 

Step 4)

Choose “automatic repair”. It can find and fix your booting problem but sometimes it fails!


.

Step 5)
If so,Go back to the “Advanced options” and selelct “Command Prompt”.

Then execute these commands in the cmd.exe

bootrec /fixmbr            -------If you have Damaged MBR.


bootrec /fixboot             
-------If you’r MBR is having problem or Missing.

 

bootrec /rebuildbcd      -------If you’re MBR is Compressed or unable to repair


bootrec /scanos    
    -------If you want to scan the operating system

cmd

 

Step 6)After receiving a success confirmation as

Successfully scanned Windows installations.

Total identified Windows installations: 0

The operation completed successfully.

Close the cmd and reboot your PC.

Step 7)If Windows does not boot ,then try the following in cmd  

Enter the “bcdedit”.

Step 8) The lists of items will appear under Windows Boot Manager and under Windows Boot Loader. Search for the following items:

  • Under Windows Boot Manager, the Device item should be set to unknown.
  • Under Windows Boot Loader, the Device and OS device items should be set to unknown.

Run the following commands

bcdedit /set {default} device partition=c:
bcdedit /set {default} osdevice partition=c:
bcdedit /set {bootmgr} device partition=c:

Step 9) if that also fails then  try browse to the folder

X:SourcesRecovery and then enter “StartRep.exe” which executes another automated startup repair utility.

 

Comments

Popular posts from this blog

Various Units and their equivalents in Computer science

Various Units and their equivalents in Computer science   1 Bit = Binary Digit 8 Bits = 1 Byte 1024 Bytes = 1 Kilobyte 1024 Kilobytes = 1 Megabyte 1024 Megabytes = 1 Gigabyte 1024 Gigabytes = 1 Terabyte 1024 Terabytes = 1 Petabyte 1024 Petabytes = 1 Exabyte 1024 Exabytes = 1 Zettabyte 1024 Zettabytes = 1 Yottabyte 1024Yottabytes = 1 Brontobyte 1024 Brontobytes = 1 Geopbyte 1024 Geopbyte=1 Saganbyte 1024 Saganbyte=1 Pijabyte Alphabyte = 1024 Pijabyte Kryatbyte = 1024 Alphabyte Amosbyte = 1024 Kryatbyte Pectrolbyte = 1024 Amosbyte Bolgerbyte = 1024 Pectrolbyte Sambobyte = 1024 Bolgerbyte Quesabyte = 1024 Sambobyte Kinsabyte = 1024 Quesabyte Rutherbyte = 1024 Kinsabyte Dubnibyte = 1024 Rutherbyte Seaborgbyte = 1024 Dubnibyte Bohrbyte = 1024 Seaborgbyte Hassiubyte = 1024 Bohrbyte Meitnerbyte = 1024 Hassiubyte Darmstadbyte = 1024 Meitnerbyte Roentbyte = 1024 Darmstadbyte Coperbyte = 1024 Roe...

create CON, PRN, AUX folder in Windows

Ever tried to create the following folder in Windows?  CON, PRN, AUX, CLOCK$, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, & LPT9 Probably windows doesn't allow you to create a folder in these name using Windows Explorer or Command Prompt directly! This is because windows prevent these terms as SYSTEM Folder Names   which are reserved  for the Operating System. But there is a trick to create it. Trick for CREATING those folders:  In command prompt, Type the following: md \\.\\C:\con This would create a folder named "con" on your "C Drive" i.e., md \\.\\(path where you want to create)followed by the name Similarly to delete such folder: Type the following in cmd: rd/s \\.\\C:\con This would remove the folder named "con".please note that rd(Remove Directory) command is used with "/s" switch as otherwise it would give error that "folder is not...