Russ' Do It Yourself Home Workshop

Finding Fixes to Just About Anything and Everything

Windows 7 Suddenly Won’t Boot – Reboot and Select Proper Boot Device or Insert Boot Media in Selected Boot Device and Press Any Key – Repairing the Windows 7 Bootloader

Posted by Russell Wright on November 15, 2009

I had just walked away from my Windows 7 desktop after initiating a download of some VMWare software.  When I came back to it about an hour later I was presented by a boot screen that said,

"Reboot and select proper boot device, or insert boot media in selected boot device and press any key."

This was all very interesting because I hadn’t done anything to reboot the computer.  No power failures or anything like that had occurred.  I’m not even sure what caused it to reboot.  I seriously doubt that downloading the VMWare player had anything to do with my problem.  🙂

My computer is a home built tower with an ASUS P5Q-EM motherboard which was purchased on 2009-10-04, so it’s not very old!  I was thinking “infant mortality failure” but I didn’t want to give in to a hardware problem just yet.  I run a RAID 1 array using two Seagate ST3750640NS drives with Intel Storage Manager.  I’ve been very pleased…until now!

From a h/w perspective, I went through several iterations of disconnecting disk devices on the inside of the tower to eliminate each device as a potential invalid boot source.  I disconnected my CD and DVD drives, two external hdd trays and my USB card reader, just to make sure it wasn’t trying to boot off an invalid device.  I also made several changes to the boot order to insure something weird wasn’t going on there.  Same error.

So, I got the Windows 7 DVD and booted from it and went into the repair mode, which seems to be very similar to what Windows Vista offers.  I let it perform the automatic startup repair.  It reported to have found the problem and fixed it (no valid boot partition), but upon rebooting I was left with the same error.  So, I started digging…

I first started by using the bootrec command line tool to attempt to repair the boot records.  The process most people suggest is:

Bootrec /fixmbr
Bootrec /fixboot
Bootrec /scanos
Bootrec /rebuildbcd

If it doesn’t work, reboot, repeat the above steps and add

Bootsect.exe /nt60 all /force

and reboot again.  This did not work for me, either.  Additionally, the /fixmbr switch reported it worked correctly, but the /fixboot switch reported “element not found.”

This led me to the Nuclear Holocaust recovery process documented in the Neosmart wiki.

I then proceeded to go down the road of creating a new Boot Configuration Data file, which I had never done before.  It seems like this is the replacement (since Windows Vista) for the boot.ini file and you need a special command line tool (BCDEdit) to modify it.  That’s certainly easier…NOT!

Start by deleting the original bcd file (mine wasn’t there to begin with; neither was the \boot directory).
del C:\boot\bcd

I had to re-create the boot directory.
md boot

Create a new temporary bcd file.
bcdedit /createstore c:\boot\bcd.temp

Add an entry to it.
bcdedit /store c:\boot\bcd.temp /create {bootmgr} /d "Windows Boot Manager"

Now, import the temp file entry into the "real” BCD file.

Failure!!!
The store import operation has failed.  The requested system device cannot be found.

bcdedit /import c:\boot\bcd.temp

More searching revealed that I should try setting the partition on which the bootrec exists to ACTIVE.  Following the advice here, I used DISKPART to set the active partition.

—————————————Additional Actions————————————-

From cmd prompt:
DISKPART
LIST disk
SELECT disk #
LIST partition
SELECT partition #
ACTIVE (<< Marks the partition as active)
EXIT (Exits DISKPART)

—————————————Additional Actions————————————-

Then I could continue from the previous procedure of creating the BCD file.
bcdedit /set {bootmgr} device partition=C:
bcdedit /timeout 10 del c:\boot\bcd.temp

Now we have a clean, working Windows 7 bootloader. But we need to add a Windows 7 entry to it:

bcdedit /create /d "Windows 7" /application osloader

BCDEdit should return a message with a GUID (the big, ugly unique identifier in bold) for the newly-created entry, something like this:

The entry {c0dfc4fa-cb21-11dc-81bf-005056c00008} was successfully created.

A word of advice.  Use the copy/paste features in the command window to copy the GUID assigned so you don’t have to type it over and over in the next steps.  Do NOT use the GUID displayed here for representative purposes!

Again, you’ll need to use the value that BCDEdit returned, along with the drive letter for the drive that Windows 7 is installed to, and substitute those values into the BCDEdit commands shown.

bcdedit /set {c0dfc4fa-cb21-11dc-81bf-005056c00008} device partition=C:
bcdedit /set {c0dfc4fa-cb21-11dc-81bf-005056c00008} osdevice partition=C:
bcdedit /set {c0dfc4fa-cb21-11dc-81bf-005056c00008} path \Windows\system32\winload.exe
bcdedit /set {c0dfc4fa-cb21-11dc-81bf-005056c00008} systemroot \Windows

 

And, last of all, tell the Windows 7 bootloader to boot the new entry by default:

bcdedit /displayorder {c0dfc4fa-cb21-11dc-81bf-005056c00008}

After completing all these steps and rebooting, I still ended up with a problem. 

“Bootmgr is missing”

To repair this problem, I again booted from the Window 7 DVD and went into the repair mode.  I allowed it to automatically repair the boot problems.  The repair tool reported that the “boot manager is missing or corrupt” and attempted to repair the problem.  After rebooting, it worked!  Everything was back to normal. 

Hope this helps others out there!

96 Responses to “Windows 7 Suddenly Won’t Boot – Reboot and Select Proper Boot Device or Insert Boot Media in Selected Boot Device and Press Any Key – Repairing the Windows 7 Bootloader”

  1. Menzies Chen said

    Amazing, this exact problem popped up for me today, and I followed your fixes to the T. I even got the same error messages as you did on the way. And now I’m up and running! THANKS!!!!!

    For those who might be interested, this message came up on my computer when I removed one of my hard drives. I used to run Vista, and decided to install an entirely new hard drive and dual boot Windows 7. I’m so happy with 7 that I decided tonight to take out my other hard drive to add to my Home Server drive pool. My Vista hard drive must have had the proper boot manager to allow me to dual boot, and when I took it out, so went my boot records.

    Also, I hit a couple of snags along the way (just some minor typos), but a good minute of staring at your post was all I needed to figure out what you meant. For others out there, here are a couple of clarifications which may help.

    1. After the DISKPART section, resend the import command from above before moving on.
    2. The line “bcdedit /timeout 10 del c:\boot\bcd.temp” is actually two lines: “bcdedit /timeout 10” and “del c:\boot\bcd.temp”.
    3. At the very end I still got “Bootmgr is missing”, even after letting Windows 7 automatically repair my hard drive the first time. I booted using the Win7 installation disk, and then selected “Startup Repair” to make a second attempt. The second time worked for me.

    Thanks again!

    • Russell Wright said

      Thanks for the great comments. I’m wondering if there is a problem with removing single drives that are being managed by Intel’s RAID s/w (I have one in a removable tray) and swapping in another drive. Haven’t tested it, but this has crossed my mind as a source of my initial problem.

  2. Gopher said

    Thanks for the info…although I followed it to the word I still have a really Strange Problem.

    I installed Linux some time ago and in my wrong-doing somehow managed to screw up my Win 7 Loader…when I used the Repair option on the Windows 7 disc it did repair it but now I just get a black screen with a blinking cursor(the dos cursor) and no errors..

    I resolved this by booting from Hiren’s boot disc which has(thankfully) got an option to do so…And therein lies my problem…I cant boot without that Disc and I cant fix my booting with the Repair option…

    Once I installed Linux again I have the Option of “Windows 7” but then it gives me the error “Bootmanager is compressed”

    So as you see I am hoplessly stuck.

  3. Elyaradine said

    You, sir, are a life saver.

    My experience is exactly the same as the first comment; I’d installed Windows 7 with my Vista drive plugged in, intending to dual boot. When I found I no longer required Vista any more, I removed the drive, resulting in the error.

    Thank you so much for posting this. It was lengthy, but also kind of fun – almost like playing Uplink again. 😉

  4. Bajenff said

    My problem was that a hard drive was acting up, soon to break. So i got a new one and installed win 7 on it.
    I kept the old hard drive in hope to get to back it up.

    I was getting disk read error 90 % of the time when starting up win 7, but win 7 started the other 10%. So i removed the old hard drive and got this boot manager problem.

    Didn’t use all the steps, but it Worked!

  5. Brandon said

    Omg, you are amazing!!! I had unplugged my computer in order to test out a mb for my grandmother, it will be a major upgrade, 600mhz to 2ghz. Anyways, I formated my 120gb drive to install xp and test the old mb out, I don’t know how, but it somehow affected the bootmgr on my 700gb drive, either that, or the 700gb drive is going out. I thought I was going to have to reinstall win7 and get my bluetooth drivers working again, which took nearly a week the first time. This saved me SO MUCH time, thank you SO MUCH!!!!

  6. Donnald said

    very good fix manual, thax for it, it worked for me (after i delete winxp boot partition and leave windows7 untouched)

  7. Svende said

    I tried your fix, but to no avail. I ended up deleting the BCD from the boot directory and made the recovery procedure create a fresh one and my Windows boots again 🙂

  8. 6r33n said

    THIS. IS. LEGENDARY.
    What a relief! Oh my… I honestly can’t thank you enough. ❤

  9. GaMerZ said

    Thank you Russell and Menzies! Your combined instructions work!

  10. Matthew said

    hi there,

    doesnt work for me, tells me the source is invald all the time,and that it cant find the OS atall. it cant even find my HDD, which leads me to beleive my HDD has died.

    thanks anyway,

    Matt

  11. Adam said

    This guide seriously just saved my life. You, sir, have my eternal gratitude.

  12. Brian said

    Allow me to sing your praises. Between your intructions and the notes from the first comment, it worked without a hitch. Right down to needing windows installer to repair twice. Thanks so much!

  13. Pankaj said

    Worked like a charm!!! Extremely good.

  14. DGSolo said

    EPIC!!! This worked fantastically well. I’ve already saved the page to send to friends in case they run across the same problem. Absolutely golden…thank you!

  15. Gary said

    I love you like the rest of these people
    however my explorer.exe crashed instantly

  16. bluefoxtoo said

    Oh. My God. This guide is AMAZING! Exactly my problem, exactly the fix (I had to do the extra step that Menzies did though).

    Brand new MoBo, brand new memory, brand new HDD…this guide saved my life!

  17. Bart said

    Thank you so much. I had the same exact issue and going through this guide step-by-step solved it. I was pulling out my hair, pulling out sata cables, pulling out hard drive bays, pulling out USB cables…

    Wish I had pulled UP your guide first. 🙂

    Thanks again!

  18. Chris said

    hi i have the same problem but after i do the diskpart i resend the import file and it still says failed and that the system device cannot be found 😦

  19. Joey said

    May the gods bless you with everlasting life, prosperity and all that you wish in this world. You seriously saved me and my newly built PC. I had the SAME EXACT PROBLEMS down to the very last error message and repair. As close as other people got to my problem, nobody hit it on the head like you did. Thank you and thank you again. I will forever be in your debt.
    -Joey

    P.S. BTW, has anybody determined what has caused so many people to suffer from this?

  20. Stetteo said

    Thank you, great guide, i had to do something more, but i’wouldn’t have survived without your help.

  21. Sarah said

    OMG.

    This was the single most helpful repair article I’ve ever followed. A billion thanks to you, good sir 😀

    My main OS is win7 on an Intel SSD. The problem occurred when I formatted my D: drive containing Vista which I didn’t use anymore. Little did I know the boot records were on this drive…

    Also I’ve seen other questions on the web wondering why this step doesn’t work:
    bcdedit /set {bootmgr} device partition=C:

    It’s because you’ve got to RE-ENTER the line that failed before…
    bcdedit /import c:\boot\bcd.temp

    *Important*
    You need a PayPal donate button on this site asap 🙂

  22. You’re the best, sir!

    I’ve tried everything, but only your explanation makes my Win7 start again! May I translate it to my language and repass to everyone else?

    Thanks a lot!

  23. Marc said

    I’ve come across this error while re-installing Windows 7. I’ve wiped the drive and started the installation and while installing I got an error stating that there was a required driver missing. When I restarted, I received this error “Reboot and Select proper Boot device or Insert Boot Media in selected Boot device and press a key. I’ve reset the CMOS and checked the cables and drives but still the same issue. Neither my DVD drive or HDD are showing up in the BIOS so I can’t boot to the Windows 7 disc to get to the command prompt. I was wondering if I need to replace my HD or would that just be a waste of my time and money?

    I have the HP Pavilion p6115y

    8GB Ram
    750 GB SATA HD
    AMD Athlon x2

    Any feedback will be helpful

  24. Doug Teachworth said

    AWESOME!!!

    This is downright awesome!!! Worked like a charm.

    Thank you!!!!!!!!!!!!!!!!!!!!!!

  25. ksmith said

    Partition on 2nd hard drive dissappeared, tried several windows machines, no go. Booted using Ubuntu 10.10 DVD and files showed on hard drive. Rebooted in Windows and files on hard drive now show again. I guess Ubuntu rebuilt some file table.

  26. Pete said

    I’ve followed the guide up to the failed import command and the need to use diskpart to set the active partition.

    I have 3 drives and I think I know which one it is, but that one has two partitions, a large one, and a 100MB partition. Should I be setting the large one, or the 100mb partition as active?

    Any help appreciated!

  27. […] op te lossen. Ik heb een repair met de windows 7 geprobeerd, maar dat lukte niet. Ik heb dan deze instructies gevolgd vanop een website. Maar nu krijg ik de volgende foutmelding op mijn computer "BOOTMGR […]

  28. King said

    Thank you so much! This is a very good guide, I was worried about all my files but you saved the day! 😉 THANKS !

  29. Travis said

    Just an FYI for everyone, be sure you don’t have any other drives (USB or otherwise) when you are troubleshooting this problem!! Your system may be trying to boot from them, which would be unsuccessful (unless they happen to be bootable and have a valid OS on them of course).

    Here’s more detail…. I had this exact issue and was about to perform the recovery steps that have seemed to have worked for everyone. I then had a small epiphany. For me, this issue started when I tried to come out of standby — my computer turned on but nothing else after that (no video, and computer was otherwise unresponsive). I then reset it and saw the error that this post is about. I then realized that I had just got an external USB drive which I had attached to my computer a day or two ago and immedately suspected it might be the issue. Sure enough, when I unplugged it from my computer and restarted, windows came back without issue. So I now just need to take the USB out of my boot sequence in my BIOS (or just move it after the hard drives).

  30. Zylock said

    God Bless you, you brilliant man!
    My brand new beauty of a gaming-rig had at install access to two hard drives, a 500gb and 1tb, with the 500gb being the primary OS drive with Windows 7 Home Premium on it. Unfortunately, the 1tb drive wound up being worth less than its casing, and died on me a few days ago after clicking and making weird noises for a month.

    Turns out, Windows decided to put all the boot settings on the secondary, 1tb drive! *shakes head in disgust*
    Just one more reason added to my list of “Reasons why I hate Windows.”
    With my perfectly functioning 500gb drive containing my perfectly legit, stable, pretty install of Windows 7, connected and recognized by the BIOS as the primary SATA, I was constantly getting the “Please insert proper boot media,” error. Windows refused to boot. I tried swapping SATA cables, changing BIOS settings, I ran the ‘Live – try it without installing,’ version of Ubuntu and attempted a few disc utilites; I tried every option that the Windows 7 install disc had for repair features. I tried everything, to no avail.

    Thank God I found your post! It fixed my problem! Thank you! Thank you!
    THANK YOU!

    Note for anyone else who finds this: I wasn’t able to get the Windows 7 ‘Repair Install,’ feature on the Win7 DVD to actually see my Windows 7 partition until AFTER I’d completed the above steps. Also, I was sure to switch from X:\ to C:\ for all of the steps. Not sure if it was necessary, though.

  31. Caroline said

    OMG!!!! You’re my hero!!! you just saved my pc!!! really really really(x1000000) appreciate it!!!
    Thank you!!!! THANK YOU!!!! THANKKKKKK YOOOOUUUU SO MUCH!!!!
    ❤ ❤ ❤ ❤ ❤ ❤ ❤

  32. Mahes said

    hai friends please help me ,

    when i turn on my PC it is showing that “reboot-select-proper-boot-device-insert-boot-media-selected
    or insert boot media in slelected in boot device and press key” then i try to repair and restore with repair disc but it fails then i try to reinstal fresh copy of operating system(win7,win xp sp2…) but it shows that ” NO DRIVES TO INSTALL WHERE TO INSTALL”

    What to do i do no? i have show many very important data’s i want to recover that data’s
    any way to recover
    any service centre to recover (bangalore)
    please hlp me

  33. Tim said

    Russell, thank you, thank you, thank you! I had vision of gigabytes of data being lost in the aether – all I was trying to do was install an additional hdd when I got the dreaded “Reboot and select proper boot device, or insert boot media in selected boot device and press any key.”

    What you described above worked perfectly until the very last instruction – I had to run the repair tool from the DVD twice, but my OS is now up and runnig as it should

  34. Alex said

    Yes,
    I put a new disk in my laptop, I could not install XP, Vista or 7. With this help I was finally succesful, thanx a lot!

  35. rubben said

    thanks for your description. I have the same problem, started yesterday. Same reboot and select proper boot device blablabla. I only want to know if I follow your guide and steps, my HDD won’t format? Cause you said at the end everything was back to normal? Also you got all your files back?

    Thanks in advance!

    • Russell Wright said

      This has been so long ago now I don’t know if I can remember much more. Part of growing old, I guess!

  36. Paul said

    Hi,

    First of all let me thank you for your effort to write this explanation.

    When following your description everything goes as specified until the step:
    “bcdedit /timeout 10 del c:\boot\bcd.temp”

    It says: “the timeout value is not valid as specified Run “bcdedit /?” for command line assistance. Parameter incorrect”.

    I think the error is in the last part of the sentence, because when I “just type “bcdedit /timeout 10”.
    It says operation completed successfully.

    I’m completely lost and almost ready to pull my hair out. I checked millions of times if I made a typo (not the case).

    Could it something have to do with the fact that I changed c: in d: ? I changed c: into d: everywhere off course.

    Could you please help me? I would be very grateful!!

    Rg,

    Paul

  37. Hey thanks man!,
    Used this fix on a client’s computer and it worked like a charm!

    Also, the like the contains the timeout command and del command are separate lines 😀 but I think you all see that by now 😀

  38. Axilleras said

    Thank you helped me after patrition winxp delete ddnt boot .. Just repair eith win7dvd ad worked

  39. tuffmeat said

    http://support.microsoft.com/kb/922976

    • Russell Wright said

      INACCESSABLE_BOOT_DEVICE. Gotta’ love it when those spelling errors get put in error messages. It’s kinda’ like a double negative. Hey, MS…”Inaccessible,” not “Inaccessable!”

  40. darkeid said

    Thanks for sharing your knowledge Mr. Wright +1 from me

    This solution worked out by the letter (even in teh errors mentioned) and as Menzies Chen said, the pc i worked on booted up normally after the second time i pressed startup repair.

    Thanks a lot again!

  41. Umang said

    GAHH I followed this guide and Menzies Chen’s comment, and on the last step, i let the recovery disk auto correct the boot manager, but it didnt work. Menzies said (s)he had to do the startup repair, and when I click startup repair, it tells me “Startup Repair cannot repair this computer automatically”

    In Diagnositics, the following tests ran successfully,
    Check For Updates
    System Disk Test
    Disk Failure Diagnosis
    Disk metadata Test
    without errors, and then it tells it error code 0x2 because it failed running “File Repair”.

    I restarted my computer and tried again too, but it still doesnt work! help!

  42. darkeid said

    The same pc that was repaired with this method presented the exact same problem after 3 weeks (BootMgr missing). My friend was watching a vid on Youtube when the pc crashed he reports that the sound from the vid kept stuttering endlessly.

    We replaced the HDD just in case and reformatted it with Win7 32 (new Sata cable) and it presented the same thing its working again by following the same steps mentioned here.

    Would you be kind enough to share your thoughts as to what you think might be causing this prob. Do you think a faulty RAM chip could effect the BootMgr or do we replace the Mobo ? I replaced a faulty ram chip on that machine a while back due to it causing BSOD’s (the second chip that was bought on the same date is still on the Mobo , both chips old / new are identical).

    The specs of the machine are: Asus P5Q3-Deluxe , 2x2GB Dual – DDR3 Kingston 1033Mhz ram, Standard 550W power supply , Geforce 9800gt . No o.c. on anything , used all the latest drivers from the manufacturers websites.

    It might not matter but this machine also has a faulty front 120mm fan that stops periodically (owner did not want it to be replaced dont ask me why) plus one of the jacks of the onboard soundcard needs to be tied / held at an angle in order for the subwoofer to work.

    Thank you.

  43. sansej4 said

    could someone help me ?? and tell me where do you type this commands
    Bootrec /fixmbr
    Bootrec /fixboot
    Bootrec /scanos
    Bootrec /rebuildbcd
    because i can only get to bios after that it shows me the same thing with “Reboot and select proper boot device, or insert boot media in selected boot device and press any key

  44. Ninja1990 said

    Thank you very much this was a big help I had this exact problem arise out of nowhere, and these instructions (with a few typo corrections) fixed the problem!

  45. renanferrariari said

    I love you! hahaha Your article is from 2009, but today, after install the brand new Windows 8 Developer Preview in one of my partitions, I got the same error when I tried to get back Windows 7. Only your fix worked for me. Thank you!

  46. Doni said

    ive built a own computer and i get this error please insert a proper boot devince and wotn work when i try reformat w7 64 it cant find the hard drive ive tried 2 ones anyone can help me?

  47. […] also im Web. Ich bin auf die Webseite “IdoneItMyself” gestoßen, die Schritt für Schritt mein Problem und die passende Lösung beschreibt, […]

  48. Mjaeger said

    Thank you, what an amazing article.
    A little adendum: Even after activating the partition via diskpart, I still got “The store import operation has failed. The requested system device cannot be found.”.
    What did the trick for me was running
    chkdsk.exe /f
    on the c:-partition. Afterwards, the automatic boot repair thingie recognized the volume and everything works fine now.

  49. Wow! What a recovery procedure… Thank you soo much. I’ll follow it when I’ll have the time to do it. Meanwhile, a very quick fix that is working for me until now… Start the ASUS Laptop, get the famous message “Reboot and Select Proper Boot Device….” -> CTRL + ALT + DELETE -> The laptop restart and Windows 7 start like a charm…

  50. computer repair katy tx…

    […]Windows 7 Suddenly Won’t Boot – Reboot and Select Proper Boot Device or Insert Boot Media in Selected Boot Device and Press Any Key – Repairing the Windows 7 Bootloader « Russ' Do It Yourself Home Workshop[…]…

  51. Simon said

    Thank you for your help!

    My PC is now back to normal 🙂

  52. Minh said

    It doesn’t work…

    • Minh said

      “The store import operation has failed. The requested system device cannot be found.”
      That still display on my screen, even i used diskpart.
      I don’t know what happened to my computer !!?!?

  53. […] and https://idoneitmyself.wordpress.com/2009/11/15/windows-7-suddenly-wont-boot-reboot-and-select-proper-… =) Share this:TwitterFacebookE-mailVind ik leuk:LikeWees de eerste om post te […]

  54. Matt said

    My friend, you are a LIFE SAVER!!! Had the exact same problems as you, had to use DISKPART. Need more stuff and more people like you on the net 🙂

    Thankyou very much, I am in your debt

  55. yael said

    Great tutorial, was very useful.

  56. Øystein Olsen said

    Thank you very much for this article!

    I also came to the message saying BootMgr missing. I had to reboot using my windows 7 dvd. Select repair and reboot on the popup that came up when i selected repair installation. Then I had to reboot again. And select repair boot problems. Then finally it booted windows again.

  57. Jonathan said

    Thank-you so much for this post. It saved my bacon and made my day! VERY simple to follow, and best of all it actually works!

    Without realizing the consequences I’d installed Windows 7 on a new drive without first removing my XP install. When the XP disk eventually died, I had no more Boot Loader, no MBR, no… well… anything. I thought I was going to have to reinstall Windows 7 from scratch until I found your post. I followed the instructions, and Bam! Windows!

    To be fair, Thank-you doesn’t begin to cover it.

  58. josh said

    how do i get in to safe mode i cant get off the boot device help me plez

  59. Sergio said

    Thank you, you save me!, thanks too Menzies Chen for the observation.

  60. […] you try to boot from the separate drive, you may need to use some of the utilities listed here: https://idoneitmyself.wordpress.com/2009/11/15/windows-7-suddenly-wont-boot-reboot-and-select-proper-…Although you can skip the bcdedit stuff and use bcdboot […]

  61. Amoore5000 said

    For me, the problem was solved when I opened the case and detached then re-attached the cables from my hard drive to the motherboard. Seems the cables had come loose from their connections.

  62. Joscha said

    this is so beautifull it brings tears of gratitude to my eyes. you safed my ass!
    I had to use a second recovery cd for the 2nd repair and the very end though.

  63. vic said

    I had the same situation as Menzies Chen, original vista hard drive had to remain connected when booting to new win7 drive.
    I resolved by using free EasyBCD 2.1.2 program. With a couple of clicks, was able to change the boot drive to the win7 drive. Disconnected old vista drive and all good.

  64. Alex said

    I cannot believe this actually worked!
    I had a different error showing to start with – but as a last resort I thought i’d give this s s hot.

    After following every single step, it worked!

    This literally blew my mind – I cannot thank you enough.

  65. nahztie said

    very helpful !! thanks!! 😀

  66. santa said

    when performing the fix and when it finally work for any of you, were all the files deleted from the hard drive, or all the files remained there?

  67. iMeteoLegend said

    Weird.. it doesnt work for me…
    I have removed my whole system (and reformatted)
    It is an ASUS, and it did NOT come with a Windows Disc, instead, it came with a Asus+Windows Disc… =.=” And therefore I cannot do the last step. :O

  68. Anonymous said

    This guide worked like a charm for me. Thanks!

  69. erkorb said

    After trying all the solutions above, here is how I fixed it. It took me 5 minutes and I ended up donating to EasyBSD!

    The main issue I couldn’t get past was “The requested system device cannot be found.”

    I downloaded a copy of SuperGrub 2 and created a boot CD.
    http://www.supergrubdisk.org/super-grub2-disk/
    After booting form CD, I selected “Detect Any Operating System’. It found 2 Vista boots. The first one was giving me the same issue I had from the start – error loading c:\boot\bcd. The 2nd booted into Windows 7 perfectly. Yeah! My Windows 7 system was all there!

    Once in Win7, I downloaded and installed EasyBSDhttp://neosmart.net/EasyBCD/. I had it install a new boot mbr, selecting Windows 7 option. Rebooted, and walla! All was working again.

    Hope this help the next person. I spent 4 hours trying to perform a manual recreation of the boot member and store.

  70. George K. said

    I also used the guide a while back and solved the problem! Thanks! Very comprehensive article!

  71. C dub said

    I had this issue when I installed new realtek drivers. And then again doing the same thing later on, luckily i ran into an easy fix that worked for me and wil hopefully work for others.
    – spam del or f8 (whatever your bios key is) right as you start up the power. Then just exit with or without saving to windows and it skills load right up.
    Hope it works for others.

  72. Henry Martinez said

    Guys this worked for me very well, i try this steps once and bingo my os was running again

    http://www.sevenforums.com/installation-setup/66672-no-os-found-disk.html

    check it out maybe thats all u need too

  73. Harish said

    Omg!!! It works

  74. Anthony said

    I was dubious when I saw this because of the length, but it worked! Thanks so much

    I know when I messed up, it was when I set my C: partition as active within windows and the boot records were not copied from the system reserved “active” partition to the C:, thanks windows useful option.

  75. Morten said

    I love you for this – thanks man

  76. Swagata said

    It happened with me once. Had more than one hard disks and then removed one of them. This caused the same problem which many have faced as mentioned in this forum. Thought of trying something different. Removed all additional hard disks (internal + external) except the one which had windows 7 installed. Then did a RTCCLK jumper reset in the motherboard. (See your motherboard manual to do this.) Powered on my PC. It automatically started windows repair. Followed the process. Do not system restore. It may complete or may not. Just ignore what ever it is. The system will reboot once. And that solved it. Shut down the system properly. Add all other harddisk drives and restarted my PC. It worked. I have done this before. And so far worked always.

  77. […] Windows 7 Suddenly Won’t Boot – Reboot and Select Proper Boot Device or Insert Boot Media in Sel…. […]

  78. gary said

    Dude, as so many before me have stated. EPIC instruction. Thanks are not enough but they are all I have so Thank You dude.

  79. […] Recovering the Windows Bootloader from the DVDWindows 7 Boot Manager Recovery ProblemWindows 7 Suddenly Won’t Boot – Repairing the Windows 7 Bootloader […]

  80. soc said

    I fixed mine using this. Try this http://crownanswer.blogspot.com/2012/12/windows-8-boot-loader-corrupted.html?showComment=1371445877612#c1408698272216804093

  81. […] windows 7 boot loader missing/corrupt – Page 2 – Windows 7 Help Forums Another more detailed fix: Windows 7 Suddenly Won’t Boot – Reboot and Select Proper Boot Device or Insert B… It's your choice to either continue trying to fix this – or to wipe and reinstall. I'll continue […]

  82. Komangrovv said

    Goodness gracious me! Thanks a lot man. Had the same problem here. Followed thy steps and damn did it work wonders. Thanks bruhhhhh. U da mannnn!

  83. Confused72 said

    Many thanks for this, you just saved me buying a new laptop! I encountered this error when I was using my Asus’s recovery disks to go back to Windows 7 after getting fed up with 10, which had caused lots of problems on it (apparently upgrading to Windows 10 stops the Asus f9 system recovery from working). The error popped up at the end of the first recovery disk, after which the computer wouldn’t boot at all, and just restarted every 5 seconds. I followed your instructions, with the addition of wiping the entire hard drive with the diskpart tool, as I had a couple of fat32 partitions on the disk previously. Afterwards the computer was left with a prompt to insert bootable material. From there I could reinstall the Windows 7 iso (downloaded from microsoft’s website) and all the drivers from the Asus website, and hey presto! New laptop. Thanks so much!

Leave a reply to Russell Wright Cancel reply