Bootmanager is missing - Super User most recent 30 from superuser.com2010-03-22T14:57:59Zhttp://superuser.com/feeds/question/66282http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://superuser.com/questions/66282/bootmanager-is-missing4Bootmanager is missingpaulyhttp://superuser.com/users/102312009-11-05T18:08:21Z2010-01-11T01:31:42Z
<p>Went to disk manager and setup a simple volume as drive D.</p>
<ul>
<li>Installed windows 7 home premium</li>
<li>Disk manager: created a new simple volume "D:" in unallocated space.</li>
<li>Unable to until drive "C:" was made active.</li>
<li>Simple volume "D:" created.</li>
<li>On reboot got <strong>Bootmgr is missing</strong></li>
<li>Booted from installation disk and tried: </li>
<li><code>> bootrec /fixboot</code></li>
<li><code>> The operation completed successfully</code></li>
<li>However still got <code>bootmgr is missing</code></li>
<li>Tried: </li>
<li><code>> bootrec /RebuildBcd</code></li>
<li><code>> Successfully scanned Windows installations.</code></li>
<li><code>> Total identified Windows installations: 0</code></li>
<li><code>> The operation completed successfully</code></li>
<li>Still getting <strong>Bootmgr is missing</strong></li>
</ul>
<p>What are my options?</p>
http://superuser.com/questions/66282/bootmanager-is-missing/66285#662854Answer by Matt for Bootmanager is missingMatthttp://superuser.com/users/69052009-11-05T18:17:52Z2009-11-05T18:17:52Z<p>Boot to a dos prompt and from the Win7 DVD, in the <strong>boot</strong> folder, try running </p>
<pre><code>bootsect /nt60 c:
</code></pre>
<p>Then run 'diskpart' and type type following</p>
<pre><code>list disk
select disk 0 // Where disk 0 is where your C is
list partition
select partition 1 //Where partition 1 is C
active
exit
</code></pre>
<p>Reboot your system</p>
<p>EDIT: By DOS prompt I mean off the win7 DVD to a console, whatever they have</p>
http://superuser.com/questions/66282/bootmanager-is-missing/66299#662991Answer by Mehper C. Palavuzlar for Bootmanager is missingMehper C. Palavuzlarhttp://superuser.com/users/135672009-11-05T18:40:09Z2009-11-05T18:40:09Z<p>If Bootrec cannot locate any missing Windows installations, you must remove the BCD store, and then you must re-create it. To do this, boot to command prompt and type the following commands in the order shown below. Remember to press ENTER after each command.</p>
<pre><code>bcdedit /export C:\BCD_Backup
c:
cd boot
attrib bcd -s -h -r
ren c:\boot\bcd bcd.old
bootrec /rebuildbcd
</code></pre>
<p>Finally, restart the computer.</p>
http://superuser.com/questions/66282/bootmanager-is-missing/66929#669290Answer by akshay for Bootmanager is missingakshayhttp://superuser.com/users/171102009-11-06T22:49:22Z2009-11-08T15:28:38Z<pre><code>list disk
select disk 0 // Where disk 0 is where your C is
list partition
select partition 1 //Where partition 1 is C
active
exit
</code></pre>
<p>I tried this code but apparently now my system opening test memory test system page...befor at least it was opening dual boot page...
what to do please help...</p>
http://superuser.com/questions/66282/bootmanager-is-missing/67514#675140Answer by Bo for Bootmanager is missingBohttp://superuser.com/users/172752009-11-08T15:27:06Z2009-11-08T15:27:06Z<p>Did all the above. Still saying Bootmgr is missing</p>
http://superuser.com/questions/66282/bootmanager-is-missing/75485#754851Answer by Leighton for Bootmanager is missingLeightonhttp://superuser.com/users/193002009-11-26T03:06:23Z2009-11-26T03:06:23Z<p>Fixed it!</p>
<p>I had a similar problem with the bootmgr being installed on a different hard drive when the OS was installed on a RAID array. This brought a few other problems with having to go deeper into the wizards to "load drivers" then exit out and get back to the command prompt.</p>
<p>Here is what you do.</p>
<p>I tried the same options as listed above. PLUS</p>
<p>The real problem is that the OS is looking for the file <strong>Bootmgr</strong> but it's not there.</p>
<p>So to get it there you have to copy it from the Windows 7 DVD.</p>
<ol>
<li><p>*<em>xcopy d:\bootmgr c:*</em> (where D: is
your CDrom)</p></li>
<li><p>*<em>xcopy d:\bootmgr.efi c:*</em> (don't know if
it needs this or not)</p></li>
</ol>
<p>Then I ran the above options again.
Then it finally booted successfully.</p>
<p>Cheers,
Leighton</p>
http://superuser.com/questions/66282/bootmanager-is-missing/76556#76556-1Answer by Gojyu for Bootmanager is missingGojyuhttp://superuser.com/users/195972009-11-29T07:49:32Z2009-11-29T07:49:32Z<p>Excellent diagnosis, Leighton!</p>
<p>I had gone through all of the bootrec and bcdedit commands to no avail. After applying your solution, Windows 7 boots just fine.</p>
<p>Thank you very much.</p>
http://superuser.com/questions/66282/bootmanager-is-missing/78913#78913-1Answer by nms for Bootmanager is missingnmshttp://superuser.com/users/202292009-12-04T17:58:00Z2009-12-04T17:58:00Z<p>is this the correct way?</p>
<p>bootsect /nt60 c:</p>
<blockquote>
<p>diskpart</p>
</blockquote>
<p><em>xcopy d:\bootmgr c:</em>
<em>xcopy d:\bootmgr.efi c:</em></p>
<p>list disk
select disk 0 // Where disk 0 is where your C is</p>
<p>list partition</p>
<p>select partition 1 //Where partition 1 is C</p>
<p>active</p>
<p>exit</p>
<p>then restart..</p>
<h1>i already tried like above but still saying Bootmgr is missing</h1>
<p>need help</p>
http://superuser.com/questions/66282/bootmanager-is-missing/82587#825870Answer by nonW00t for Bootmanager is missingnonW00thttp://superuser.com/users/212422009-12-13T08:19:56Z2009-12-13T08:19:56Z<p>I guess ms STILL can't get a windows setup right when there is more than one hd in the system?!!! This is nuts....</p>
<p>I have a raid array on its own controller, and 2 sata drives on the motherboard's controller. In the Win7 setup I supplied the raid driver, and the array appeared fine, and I nuked the partition and installed to it raw. (Setup doesn't have to do a full format anymore? That was wild!)</p>
<p>So on the first couple reboots, I left the dvd in the drive and the "press a key to boot from dvd" or similar message would time out, and the system would boot as expected. So later I finally take out the dvd and reboot, and I get a "can't find system disk" type of message (didn't actually say anything specific about bootmgr missing). Hhowever, I could boot fine again if I put the dvd in the drive and let the "press a key to boot from dvd" message time out.</p>
<p>(I keep thinking of the "trust me" apple commeercials at this point.)</p>
<p>So what I found later is that bootmgr file and Boot folder are on one of the sata drives, and not the raid drive. But this was after that drive not even appearing in explorer, I thought it got trashed by the setup! (Memories of windows installs past.)</p>
<p>In the end, I just disabled the sata controller altogether so the raid drive was the only drive in the system for setup to not get confused. Everything is fine now, system boots normally and with the sata drives back online.</p>
<p>BUT... bootmgr and Boot folder are not on the raid drive (C:)! They are on the same sata drive as before. I was rebooting fine before with the sata disabled, so they must have been on C: and then either got moved to the sata drive, or they were detected on the sata drive and deleted from C:???? What gives!?</p>
<p>So I guess the only way to be sure is disabled the sata controller again and see if 7 will still boot from the raid. Damn weird. (Hey, it's still windows, they say. LOL)</p>
http://superuser.com/questions/66282/bootmanager-is-missing/83158#83158-1Answer by Phil for Bootmanager is missingPhilhttp://superuser.com/users/214012009-12-14T18:07:56Z2009-12-14T18:07:56Z<p>I just want to support Leighton's solution. I tried all that stuff bootrec.exe and bcdedit.exe can do. In the end, the files bootmgr and eventually bootmgr.efi had to be copied from the windows dvd to the system partition.</p>
<p>Thanks Leighton!</p>
http://superuser.com/questions/66282/bootmanager-is-missing/86370#863700Answer by MC for Bootmanager is missingMChttp://superuser.com/users/223062009-12-22T05:15:40Z2009-12-22T05:15:40Z<p>Wanted to put my 2 cents in.</p>
<p>If you created the system repair CD, boot into that CD and go through the repair functions. You may have to do this a couple of times, but it does work. I had the same problem.</p>
<p>MC</p>
http://superuser.com/questions/66282/bootmanager-is-missing/94089#940890Answer by Twissta for Bootmanager is missingTwisstahttp://superuser.com/users/243302010-01-11T01:31:42Z2010-01-11T01:31:42Z<p>Thank you so much, Leighton! You saved me so much time, nerves and my blond hair, as I was so close to tear them off my head while trying to fix this problem!!!! Your solution worked as a charm! I'm so happy! ))))))))))))</p>