Efibootmgr & gummiboot replaced UEFI entry for Windows Boot Manager

TLDR
I am now in Windows 7 and dual boot with Arch is working fine.
But before I update Arch, I would like to understand what happened, as in why adding an efibootmgr entry for Arch replaced/deleted the Windows Boot Manager entry although I followed the BG.
The status of my UEFI boot menu was, before the installation of Arch:
Windows Boot Manager
AHCI HDJ... (hard drive 1)
AHCI ST... (hard drive 2)
While working through the BG, I decided to use gummiboot=> https://wiki.archlinux.org/index.php/Be … #Gummiboot. So:
pacman -S gummiboot
gummiboot install
pacman -S efibootmgr
gummiboot install
[some error ocurred, as mentioned in red box]
efibootmgr -c -L "Gummiboot" -l /EFI/gummiboot/gummibootx64.efi
nano /boot/loader/entries/arch.conf
title Arch Linux
linux /vmlinuz-linux
initrd /initramfs-linux.img
options root=/dev/sdb3 ro
[CTRL + X, Y, Enter]
exit
umount /mnt/{boot,home,}
reboot
I then saw a new list of the UEFI boot order:
Gummiboot
AHCI HDJ... (hard drive 1)
AHCI ST... (hard drive 2)
Chose Gummiboot and it brought up a gummiboot menu with entries
Arch Linux
Windows Boot Manager
EFI Shell something
Selected Arch Linux and it went to a message something along "boot device ' ' not found" and I was in a shell which was, I think, rootfs.
I rebooted via the button on my desktop and out the Arch Linux USB drive back. After mounting the partitions:
gummiboot remove
efibootmgr
[0000: Windows Boot Manager
[0001: Arch Linux
[0002: AHCI HDJ...
[0003: AHCI ST...
exit
umount /mnt/{boot,home,}
reboot
Now I booted into a black screen with white text which said something "Reboot and select proper Boot device"
=> Inserted Win 7 64-bit DVD, repaired the boot sector. Rebooted, saw I had these entries again:
Windows Boot Manager
AHCI HDJ... (hard drive 1)
AHCI ST... (hard drive 2)
The boot into Windows worked fine. Rebooted, chrooted into my install again and:
efibootmgr
[0000: Arch Linux
[0001: Windows Boot Manager
[0003: AHCI HDJ...
[0003: AHCI ST...
efibootmogr -b 0 -B
Then I used the EFISTUB method:
efibootmgr -c -L "Arch Linux" -l /vmlinuz-linux -u "root=/dev/sdb3 ro initrd=/initramfs-linux.img"
efibootmgr
[0000: Windows Boot Manager
[0001: Arch Linux
[0002: AHCI HDJ...
[0003: AHCI ST...
exit
umount /mnt/{boot,home,}
reboot
On reboot, 'Windows Boot Manager' was again replaced by 'Arch Linux'.
=> Inserted Win 7 64-bit DVD, repaired the boot sector.
Rebooted, I have now Windows Boot Manager + Arch Linux and dual boot works now.
My questions:
What is going on with efibootmgr replacing/deleting the Windows entry? Is there something wrong with my UEFI menu?
In connection with 1., I would like to sync the EFISTUB Kernel (wiki entry) before I run pacman -Syu. Can I do that now?
Can I uninstall gummiboot now?
Last edited by jones (2013-07-11 12:30:55)

henrik wrote:So in light of your post, I decided to ditch EFISTUB + gummiboot and try out GRUB. Thanks for clearing it up a bit. Which is what confuses me a great deal more, as GRUB/gummiboot obviously do not meddle with Microsoft's EFI files. Right?
EFI relies on two things to boot:
Boot loader program files on the ESP (or occasionally elsewhere).
NVRAM entries pointing to the boot loader files.
Your own problems seem to be with the NVRAM entries, not with the boot loader files themselves. Unfortunately, managing those NVRAM entries has proven to be problematic because of bugs in specific EFI implementations, bugs in efibootmgr and other tools that manipulate the NVRAM entries, poor documentation, and other factors.
To answer your question, though, no boot loader should mess with another's files. Such things can happen, though. The number of bugs that cause Microsoft's boot loader (EFI/Microsoft/Boot/bootmgfw.efi) to be treated deferentially have provoked some tools to use it as a target location for other boot loaders. (Ubuntu's Boot Repair tool does this in a rather overzealous way. So does my own rEFInd installer script, but only under certain narrow circumstances.) Also, the EFI/BOOT/bootx64.efi file is a special case; it's the fallback bootloader that's used when NVRAM entries are missing or don't work, and various boot loader installation procedures place copies in that location, so it can be overwritten and could contain just about anything.
However, the whole thing happened again with GRUB. So I did the whole "repairing Boot problems" with the Windows DVD rescue thingy again and deleted all non-Microsoft files from the EFI partition, /dev/sda1.
Then I formatted / (root) and installed arch again and followed the Beginners' Guide which suggest mounting /dev/sda1/ to /mnt/boot (in contrast to the GRUB entry where the ESP should be mounted to /mnt/boot/efi).
I strongly advise against doing a complete re-installation just to overcome a boot loader problem. Instead, figure out what the problem is and fix it. Doing a complete re-installation is not likely to fix anything, and depending on precisely how you do it, you could end up with a more complex problem. The reason is that the re-installation is not likely to erase the NVRAM entries from the old installation, so you could find that you've got additional stray NVRAM entries. If you do happen to fix the problem by re-installing (say, because you selected a different installation option), you're not likely to know what changed to fix the problem, so you could end up in the same boat should you need to re-install again in the future.
But it did not show this line
Found Windows 7 (loader) on /dev/sda1
... how come??
I've given up trying to understand GRUB's configuration scripts. You could try creating an entry manually by editing /etc/grub.d/40_custom; or you could forget about using the GRUB scripts and create a hand-crafted grub.cfg; or you could forget about using GRUB at all. I'm not a fan of GRUB, so my personal choice is the final one.
So for all the headache and time ... should I delete the EFI partition and recreate it maybe? I think it's possible using the Windows 7 DVD.
But somehow using efibootmgr on my UEFI list somehow invalidated the Windows entry.
Reviewing your posts, it seems that you want to use the EFI stub loader directly, but you're having problems with that because when you add it to the NVRAM entries, Windows drops off your boot manager's boot options. The obvious solution to this problem is to forget about adding the EFI stub loader directly to the NVRAM entries, and instead add a boot manager that can handle either a Linux kernel or the Windows boot loader. (IMHO, this is the superior solution anyhow; I disagree with the Arch wiki's emphasis on using the EFI stub loader "raw.") It seems you were trying to do this with GRUB but had problems booting Windows. Earlier you tried gummiboot but had problems booting Linux. My suggestion is to either go back to gummiboot and fix its problem or try rEFInd. The "device not found" error you reported with gummiboot is usually caused by either a missing (or incorrectly-specified) initrd file or by an incorrectly-specified "root=" option passed to the kernel. Check those possitilities, and if you need help, report what happens in more detail. If necessary, take a digital photo of the screen and post it here. (Make sure it's legible, though!)
You can try rEFInd with minimal disk by using a CD-R or USB flash drive image. Boot with that and your NVRAM and ESP won't be affected at all. If you can get rEFInd working from the flash drive, you can then install it to your hard disk and it should continue working. Note that you probably won't be able to boot Linux directly from rEFInd with your current configuration without adding a "root=" specification to the kernel command line. You can do this by hitting F2 or Insert twice rather than launching Linux by pressing Enter. Alternatively, you can create a refind_linux.conf file in the directory that holds your kernel. That file's contents are described in the rEFInd documentation.

Similar Messages

  • Finding the explanation of all entries of the Windows Boot Manager and Windows Boot Loader sections

    Hi
    Where can I find the explanation of all entries of the Windows Boot Manager and Windows Boot Loader sections that appear when I write the /store /v options of bcdedit command?
    Thanks
    Bye
    Balubeto

    All the BCEDIT command line options are described here:
    https://technet.microsoft.com/en-us/library/cc709667%28v=ws.10%29.aspx?f=255&MSPPError=-2147217396
    Jerry
    Actually, I wanted to find the explanation of all entries (as inherit or
    device or osdevice) of the Windows Boot Manager and Windows Boot Loader sections
    that appear when I write the /store /v options of bcdedit command?
    Thanks
    Bye
    Balubeto

  • Windows boot manager boots almost fully into windows 8 before letting me select windows 7, at which point it reboots my computer

    Hi,
    I haven't used my slow HDD with windows 7 on it in a while, but today my SDD with windows 8 on it died. I have kept my old OS in a dual boot setup exactly for this rare possibility. I in fact successfully revived my SSD from windows 7.
    During the restore procedure I had to boot into both OSes (7 and 8) several times before I managed to get 8 working. I tried a lot of things before one of them struck. (Is that how the phrase goes?
    Me Hungary, no good speak English some times...) I am surprised to have found the following unexpected behavior of the new windows 8 branded boot loader:
    The new windows boot manager boots almost fully into windows 8 before letting me select an OS.
    If I select windows 7, it reboots my computer and loads windows 7, wasting a lot of time... on the windows 8 portion of the boot process, which is simply thrown away if I happen need windows 7 and not 8.
    "This is highly inefficient!" — I almost exclaimed aloud... A boot manager should load just enough of itself so that a simple OS selection menu can be presented to the user with minimal keyboard interaction. Only when a selection is made should
    it load an OS. I have no use for the new boot manager's mouse control support, and having it appear on the second screen in my dual screen setup is just plain scary. Use the main laptop monitor where the BIOS messages were displaying, and keep the secondary
    off until the OS is done booting! By the time my secondary screen turns on, the boot selection menu disappears anyway.
    Yes, I only noticed this problem now because I haven't booted into windows 7 for a long time. (300 MB worth of Windows updates were waiting for me indeed.) My boot selection menu timeout is set to 3 seconds instead of 30 so I don't have to pick windows 8
    every time.
    I am going to wait at least a week for the forum's input before I switch on my own to a faster, minimalist boot manager. I don't know what to use, I'm familiar with:
    some minimalist bootstrap loaders
    coreboot/linuxbios (recently learned of it)
    bootcamp (not really)
    acronis OS selector (discontinued before windows 8 came out, probably doesn't support it)
    syslinux/isolinux (Linux only, I think)
    old Windows bootmgr
    more recent Windows ntldr
    then this new "inefficient for dual booting" Windows 8 boot manager
    and finally grub
    Grub feels like the best option as it keeps the windows boot manager intact and supports mac, windows, and linux. All 3 of which will at one point — or has already — come up as a subject or prerequisite in my university.
    I don't know how or why I was able to access windows 8's boot loader while my SSD was dead. Was it installed on the HDD, overwriting the windows 7 boot loader? That too is inefficient. I want to completely boot from my SSD. Don't spin up my HDD while I'm
    booting my laptop on the go! The shaking of the vehicle I'm in could seriously damage the disk if I run into a pothole (common in my country) with just the right timing, data could be damaged. The entire reason windows 8 is on an SSD is so that it can boot
    without accessing my HDD with all its moving parts. My goal with buying an SSD was for the HDD to remain safely offline while I'm in a shaky environment with potholes! Also, what if I want to disconnect the old HDD in the future... Or what if it dies? Will
    the windows 8 boot loader die with windows 7? I want the two kept separately and completely independent from each other for exactly this reason.
    In summary:
    How can I stop windows 8 from almost fully booting before offering the dual boot OS selection menu? Do I need a better Boot loader?
    Why was the boot loader that came with windows 8 still working OK while the SSD with windows 8 on it wasn't accessible? Did it sneak its way onto the old HDD? I want a 100% SSD-based boot process. What is the boot loader doing on a different drive? Its
    place is on the SSD, with the operating system it belongs to. Not on the HDD of a different OS. Can I move it?
    Sincerely,
    Daniel "3ICE" Berezvai
    p.s.: For windows 7 I only have a repair disk and hidden RECOVERY partition which I kept (came with the laptop, would rather not use it.) The Windows 8 pro DVD (purchased last year) is fine, but I had it moved to a bootable pendrive so I could remove my
    optical drive and replace it with an SSD on which windows 8 is installed now. (I also have a vista ultimate DVD, as they were giving them away for free on a Microsoft conference. Funny story.)
    p.p.s.: I am subscribed (☑ Alert me) to this topic and will respond to all questions and try all recommended actions right away.
    http://3ice.hu/

    Hi,
    Thank you for your post.
    From your description, I see the issue you are facing is there is no menu to choose OS when booting dual boot(Windows 7 & Windows 8). Please let me know if I have misunderstood anything.
    It seems that the Windows 7 entry is missing, currently, we can use a tool –
    EasyBCD to get it back. After downloading it, choose the Add/Edit panel item, select the OS you're missing and let the program detect it. Then simply click the Add button to add the missing OS entry.
    At the meantime, here is a related link which demonstrates how to keep Windows 7 as the default OS in dual boot, you may use it for a reference.
    How to Dual-Boot Windows 8 While Keeping Windows 7 As Your Default OS
    http://blog.laptopmag.com/how-to-dual-boot-windows-8-while-keeping-windows-7-as-your-default-os
    [Please Note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy
    of this information.]
    Regarding your second questions in your first post, you can refer to the following link to know more about dual boot.
    Dual
    Booting Explained: How You Can Have Multiple Operating Systems on Your Computer
    http://www.howtogeek.com/187789/dual-booting-explained-how-you-can-have-multiple-operating-systems-on-your-computer/
    [Please Note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy
    of this information.]
    Hopefully the information is helpful. Please let me know if you have any questions. Thanks for your time.
    Best Regards,
    Sophia Sun
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • After Deploying an Image: Windows Boot Manager - Missing ACPI.sys

    Hi,
    I am currently working on deploying a Windows 7 Pro x64 image to a number of clients over our network using FOG. We used KVM in Ubuntu to build the base image. The image has a small virtual disk for the Windows installation and is deployed to clients with larger
    drives. Prior to capture the image, we ran sysprep /generalize /shutdown /oobe /unattend:unattend.xml, then boot the VM to the FOG client and let FOG save off the disk image. We then deploy the image to clients over FOG.
    FOG successfully copies the image over, then reboots the PC. The computer attempts to boot from the local hard drive, then fails at the Windows Boot Manager screen, saying:
    Windows boot manager
    Windows failed to start. A recent hardware or software change might be the cause....
    File: \Windows\system32\drivers\ACPI.sys
    Status: 0xc0000098
    Info: Windows failed to load because a critical system driver is missing or corrupt.
    I've updated the client's BIOS, tried a different hard drive, used ATA secure erase to wipe the drive before formatting, and still encounter this same issue with certain client computers. Are there any other steps I can take to resolve this issue?
    What files in Panther should I look at (or post) to troubleshoot? I don't see anything too obvious in diagerr, and sestuperr.log is just about empty.

    We're using two models of 120GB SSDs, and deploying to 5 different motherboards (4 Intel models + 1 MSI model). The issue is most common with the DH55TC Intel boards.
    We're using FOG due to budget limits--otherwise, WDT definitely would have been considered.

  • [HELP] A300 Desktop Stuck at Windows Boot Manager Page

    Hi Community,
    I was trying to restore my desktop back to its orginal factory settings but through the process, it encountered an error and the system restarted. When the desktop is back on, the only page it offered was the 'Windows Boot Manager' page (As seen in the picture below). It says to insert the Windows Installation disc which not only do i not have, but also the A300 desktop does not have a disc/disk drive for me to insert any disc.
    I have googled for any solutions but all of them require me to insert the disc which i clearly have no ways to do so.
    How am i suppose to proceed from here to get my desktop working again?
    Thank you in advance for any kind responses.

    Hi lyl
    The hard disk MBR seems to be corrupted
    Kindly boot the desktop into BIOS by pressing F1 key and then press F9 to load default settings and after this press F10 to save and exit.
    Check if the system works or recovery from hard disk runs, to run the recovery after the system power on press F2 key and check if the recovery works fine.
    If the issue continues then you may need to contact the support center.
    Country or Region
    Language
    Telephone number
    Hours of operation
    Supported products
    Singapore
    English, Mandarin
    18008185219
    9 am - 6 pm Monday - Friday 
    9 am - 3 pm Saturday
    IDEA Products
    Best Regards,
    Tanuj
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution".! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Windows boot manager - satellite L305-S3892

    Everytime I turn the computer on it reads Windows Boot Manager. Windows failed to start. file: \windows\system32\winload.exe   status: 0xc000000f   Info: The selected entry could not be loaded because the application is missing or corrupt. The disc won't work. Up until now I had no problem with it. How can I restore it back to factory settings?
    I changed the BIOS to start boot from CD - I first chose to repair - once completed I rebooted but still will not boot up into windows - I then chose the restore option - it seemed like it was working but then I received an error and the restore aborted.

    satellite L305-S3892
    I don't find that anywhere.
    How can I restore it back to factory settings?
    If it is indeed among the Satellite L300 series, see the section Hard Disk Drive Recovery using the Recovery media, starting on p. 66 of the User's Guide.
       Satellite L300 Series User’s Guide
    -Jerry

  • Windows Boot Manager

    Hello all Support Team,
    i Have some problem want to know reason and fix it, please help me.
    i'm used the HP ProBook 440 G1. My problem is :
    1.When i install OS win7 by disc from Microsoft, after first install complete it's reboot and black screen appear with one option to chose is " Windows 7 install [EMS Enable]". I provisional accept the solution from my friend but i still want to know what reason of this issue.
    If choose that without remove disc, the laptop will restart and progress installed windows start again from beginning.
    If choose that with remove disc, the laptop start to windows normal and everything maybe is fine ( this is my friend's solution).
    2.When I reboot this laptop, the screen "Windows boot manager" appear, even only one option to chose is Window 7, then I check in "Boots"  by open msconfig, I see only one OS and it's already default OS. But every time I restart the laptop the screen "Windows Boot Manager" always appear, how can i remove this screen and take my laptop enter directly to window ?
    That's all my ploblem, please help me fix it.
    Thanks and Best Regards,
    Katori.

    Remove the disk unless you want to install Windows.
    "When I reboot this laptop, the screen "Windows boot manager" appear, even only one option to chose is Window 7, then I check in "Boots"  by open msconfig, I see only one OS and it's already default OS. But every time I restart the laptop the screen "Windows Boot Manager" always appear, how can i remove this screen and take my laptop enter directly to window ?"
    If you remove the password you are using, then the notebook will boot right into the operating system. That is not a good practice as there is no security at all.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • After restore windows boot manager says windows failed to start. CQ57 notebook

    Had a problem with the FBI scareware. Took it to a cmputer repair place. They wanted $250 to fix it and now it won't boot up at all. It did the HP system restore but when it rebooted the Windows Boot Manager says "Windows failed to start". It wants an installation disc. THen :
    File: \Boot\BCD
    Status: 0xc000000f
    Info: An error occurred while attempting to read the boot configuration data.
    Is it trying to boot from the wrong partition?

    Enter BIOS setup by tapping/holding the F10 key immediately after powering on the laptop.Use Diagnostics to test your hdd.
    If you haven't burned a Recovery Disk set, phone HP to order one.Usually around $17. Choose your country here>> Contact HP
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • My laptop have refused to start it will just show windows boot manager on the screen,

    My laptop have refused to start up, it will just show windows boot manager on the screen,and me to choose an operating system to start or press tab to select a tool but when I tryed all those things none of it will respond

    Thanks also Star 1. I have gone the route you suggest also but with the same results as I explained to the hatter. I have about a dozen die-hard Windows friends and they have been trying to help me also. We have tried everything and I have read a several pages on how to do it but nothing looks like what they are saying it does. When in Vista, Vista says it is the default SU OS. When in XP, XP says it is the default SU OS. So there is nothing to change. Only the Windows Boot Manager (which is really not a manager but a boot selector) shows Vista as default and XP next. I've learned again what I already knew. Windows is a conglomerated piece of crap that is hard as heck to use.

  • Can someone explain what I am doing wrong? Windows Boot manager error.

    Okay, I've literally searched EVERYWHERE and can not find a reasonable answer to this question.
    Everytime I try to load windows on bootcamp, I get this error:
    Windows failed to start. A recent hardware or software change might be the cause . to fix problem:
    1. insert windows installation disc and restart computer
    2.choose your language settings, and then click "next"
    if you do not have the disc, contact your system admistrator or computer manufacturer for assistence
    status 0xc0000017
    And that's it.
    I have tried everything from usb to countless 8 gig DVD which I wasted from burning the ISO time and time again.
    I am doing everything through the bootcamp installer and I partition up to 80 gigs of space of my hard drive for it.
    This is an official iso image from windows btw.
    I think it's a memory problem, but I am not sure. Here are my specs:
    Model Name:          Mac Pro
      Model Identifier:          MacPro5,1
      Processor Name:          Quad-Core Intel Xeon
      Processor Speed:          2.8 GHz
      Number of Processors:          1
      Total Number of Cores:          4
      L2 Cache (per Core):          256 KB
      L3 Cache:          8 MB
      Memory:          3 GB
      Processor Interconnect Speed:          4.8 GT/s
      Boot ROM Version:          MP51.007F.B01
      SMC Version (system):          1.39f11
      SMC Version (processor tray):          1.39f11
    If you can shoot me some advice on what I may be doing wrong, please do. I really need it urgently.
    Thanks!

    you really are way too low on memory, but that is not the issue.
    all the other hard drives need to be pulled except one.
    bumbing is sort of like there are only so many people likely to read and try to help. give us a couple hours or more.
    you say Windows, I ask "which?"
    And really all the faq and how to and even guide should cover your bases.
    Can only guess that the media you used to burn DVD or source..  see, we are not mind readers, some buy System Builder, or buy as a ISO download and burn to DVD... so start with the FAQs.
    Mac 101: Using Windows on your Mac via Boot Camp
    https://support.apple.com/kb/HT1461
    http://www.apple.com/support/bootcamp/
    Helpful Apple Support Resources (Forum Overview)
    Boot Camp Support 
    Boot Camp Manuals
    For Windows 7: http://windows.microsoft.com/systemrequirements
    For Windows 8: http://windows.microsoft.com/en-US/windows-8/system-requirements
    Learn more about how Mac computers can run Windows 8 using Boot Camp 5.
    http://support.apple.com/kb/HT5628
    Products Affected
    Boot Camp, Windows 8
    General installation questions
    What is Boot Camp 5?
    Boot Camp 5 is not a release of OS X software. Rather, it is a release of the Windows Support Software (drivers). You will need to use this software on your Mac with Windows 8 or Windows 7. For more information on Boot Camp 5, see thttp://support.apple.com/kb/HT5639
    Which Macs support Windows 8?
    MacBook Air (Mid 2011 or newer)
    MacBook Pro (Mid 2010 or newer)
    Mac Pro (Early 2009 or newer)
    Mac Mini (Mid 2011 or newer)
    iMac (27-inch, Mid 2010 or Mid 2011 or newer)
      For more information, see this article.  What are the System Requirements for Windows 8?
    Please see this article.
    How can I install Windows 8 on an eligible computer?
    Use the Boot Camp Assistant. The assistant will partition your internal hard drives and install Windows 8. For more information on Windows 8 installation, see the Boot Camp Installation & Setup Guide.
    Can I use an upgrade from Windows 7 to Windows 8?
    Yes. Download and install the Boot Camp 5 Support Software before attemping the upgrade by using the Boot Camp Assistant in OS X Mountain Lion v10.8.3. Alternatively, you can manually download the Boot Camp 5 Windows Support Software here.
    When I do an upgrade install from Windows 7 to Windows 8, an "Uninstall USB 3.0 eXtensible Host Controller Driver" message appears. What do I do?
    Do not click on Uninstall. Click the back button and Cancel the upgrade. Download the Boot Camp 5 Support Software by using the Boot Camp Assistant in OS X Mountain Lion v10.8.3, or click here to download them. Then, try the upgrade again. See this article for more information.
    After upgrading from Windows 7 to Windows 8, Thunderbolt devices are (not) being recognized when I connect in. How do I fix this?
    Disable the Windows 8 Fast Boot feature to allow Thunderbolt devices to be recognized. See Boot Camp: Thunderbolt devices not recognized after Windows 8 upgrade for instructions.
    Is there an OS X version requirement to use the Boot Camp Assistant to download Boot Camp 5 Support Software?
    You need OS X Mountain Lion v10.8.3 or later installed to download the Boot Camp 5 Support Software (Windows drivers) using the Boot Camp Assistant. After upgrading, click the Go menu and choose Utilities. Then, open Boot Camp Assistant and follow the onscreen instructions. You can download the Boot Camp Installation & Setup Guide.
    Is there a download of the Boot Camp 5 Support Software if I'm not using OS X Mountain Lion v10.8.3?
    Yes, you can download the Boot Camp 5 Support Software here.
    http://support.apple.com/kb/DL1638
    How do I use the Boot Camp 5 Support Software I downloaded from the web page?
    The download file is a .zip file. Double click it to uncompress it.
    Double-click the Boot Camp disk image.
    Copy the Boot Camp and "$WinPEDriver$" folders to the root level of a USB flash drive or hard drive that is formatted with the FAT file system (see question below for steps on how to format).
    Install Windows, leaving the flash or hard drive attached to the USB port of your Mac.
    Installation of the drivers can take a few minutes. Don't interrupt the installation process. A completion dialog box will appear when everything is installed. Click Finish when the dialog appears.
    When your system restarts your Windows 8 installation is done.
      Note: If the flash drive or hard drive was not attached when you installed Windows and was inserted after restarting into Windows 8, double-click the Boot Camp folder, then locate and double click the "setup.exe" file to start the installation of the Boot Camp 5 Support Software.  How do I format USB media to the FAT file system?
    Use Disk Utility to format a disk to use with a Windows computer. Here's how:
    Important: Formatting a disk erases all the files on it. Copy any files you want to save to another disk before formatting the disk.
    Open Disk Utility.
    Select the disk you want to format for use with Windows computers.
    Click Erase, and choose one of the following from the Format pop-up menu:
    If the size of the disk is 32 GB or less, choose MS-DOS (FAT).
    If the size of the disk is over 32 GB, choose ExFAT.
    Type a name for the disk. The maximum length is 11 characters.
    Click the Erase button and then click Erase again.
    Which versions of Windows are supported with Boot Camp 5?
    64-bit versions of Windows 8 and Windows 7 are supported using the Boot Camp 5 Support Software. If you need to use a 32-bit version, you need to use Boot Camp 4 Support Software, and you must use Windows 7. 32-bit versions of Windows 8 are not supported via Boot Camp. For a complete list of Windows OS support,

  • Cant get past "Windows Boot Manager"

    The following message appeared after restarting my computer (Toshiba Equium A200 1V0) from a window vista update
    Windows failed to start. A recent hardwre or software change might be the cause.
    To fix the problem.
    1. Insert your windows installation disc and restart your computer.
    2. Choose your language settings, and then click "Next".
    3. Click "Repair your computer"
    If you do not have this disc, contact your system administrator or computer manufacturer for assistance.
    File: \Boot\BCD
    Status: 0xc000014
    Info: An error occurred while trying to read the windows boot configuration data
    Now my problem is that I cant even change anytthing for my computer to boot from CD - I do not have a windows disc but have the Toshiba product recover disc but nothing at all works. Ive tried pressing F12, F2, F8, DEL .. actually pretty much every key just in hopes it will work.
    Anyone else got any ideas on what I can do. Im pretty much resigned to the fact that Im going to lose everything I just need the computer up and running again as soon as I can.
    Many thanks

    Until one of the experts can give you advice about repairing your Vista system, you might like to try to recover your files. I'm not very computer literate, but managed to achieve this when I "murdered" my Windows 2000 installation. I ASSUME the same process should work with Vista. (Slightly worryingly, Windows passwords don't seem to matter.)
    Download a Linux live CD - I found "Puppy" Linux a good one - small download, and easy to use. Burn the resultant .iso file to a CD. Insert the CD in your CD/DVD drive, and start the computer. Let it boot the Linux operating system. (You may need to experiment with BIOS settings to get the computer to boot from CD before its own hard drive.)
    You now have a linux operating system running independently of your hard drive. (If it's one of the large Linux programs, it will be slow when run from a CD - not a problem - just requires patience!)
    With a bit of luck, the Linux system will see any drives connected to your computer, including your hard drive. (The same as your normal operating system sees a USB stick and can copy files from it, for instance.) You might then be able to browse your hard drive files, and copy them to an external hard drive, or USB flash drive.
    I did come across some matter of permissions to write to the external drive - sorry, can't remember the answer off-hand but it was very simple - and only had it once. Again, simply google the problem. There are lots of Linux experts posting threads out there!
    This won't enable you to boot your Vista system or anything like that but, if you can get your files copied somewhere safe, then you can simply copy them back once you've reinstalled the offending Vista system.
    I'll try to provide a link to an answer I previously suggested here - sorry it's a bit long-winded, but the link in it may be of use, too.
    http://forums.computers.toshiba-europe.com/forums/thread.jspa?threadID=44736&tstart=30
    One of those things which is easier to do than to describe, perhaps - lots on the internet about Linux rescue CDs.
    I found a lot of useful articles on this google link:
    http://www.google.co.uk/search?hl=en&q=using+a+linux+live+cd+to+rescue+win dows+files&btnG=Google+Search&meta=
    I've never been good at entering search terms; you may well find better stuff.
    But the good news is that it might be possible to recover at least some of your data before reinstalling.
    If you've not used Linux live CDs before, do a bit of homework first. They're surprisingly easy, especially when you've overcome one or two of the usual initial pitfalls eg trying to burn the live CD as a data rather than an iso CD then wondering why it won't boot. Proabably easier for you to do a bit of googling than for me to write pages here!
    Another alternative, if you're better at dismantling computers than me, would be to remove your hard-drive and install it in a suitable external hard-drive enclosure. This can then be connected to another computer via a USB port and you should be able to read your files as if from a USB flash drive, and copy them. I've only tried this with old drives from old desktops with nothing on them that matters too much - but it seemed easy enough. Again, just a way of copying all your stuff before wiping your laptop's hard drive and reinstalling Vista.
    Sorry if this was a bit rambling - hope it gives you some ideas.

  • Toshiba Satellite C645-SP4145L enters windows boot manager and reboots[solved]

    Toshiba Satellite C645-SP4145L
    Problem description:
    When the laptop is turned on, it goes for about less than a second to the Windows Boot Loader Screen, then it reboots itself, this loop repeats continously.
    If you press the enter key quickly, the system boots to windows normally.
    If you press the tab key it will allow you to execute memtest
    If you try to boot from a cd or a usb, either changing the boot order in the BIOS menu or by choosing the option in the boot loader menu (F12), the laptop will crash and start beeping.
    The problems persist either if the ac adpater if connected or disconnected. The problem persist if you remove the battery and work only with AC.
    Tried solutions
    1) Windows 7 reinstallation: Reinstalled windows (not booting from the cd, but from the older windows version). The problem persist
    2)Reflashing BIOS: Download the Toshiba Boot Flashing tool, I upgraded the BIOS version, but the problem persist
    3) Pressing F8 and trying to repair the laptop: It enters Advanced Boot Options, I have tried with al the options.
    Startup Repair
    System Restore
    System Recovery Image (there is none)
    Memtest
    But the problem persist
    4)Diagnostics performed
    memtest: shows everything is ok
    chkdsk c: shows no problem on the disk partition
    Additional Info: Checking the OEM partition the recovery folder seems to be empty
    Solved!
    Go to Solution.

    Satellite C645-SP4145L
    When the laptop is turned on, it goes for about less than a second to the Windows Boot Loader Screen, then it reboots itself, this loop repeats continously.
    If you press the enter key quickly, the system boots to windows normally.
    Well done so far and good reporting. So Windows' loading sequence is messed up.
    Try a System Restore from Windows first.
       What is System Restore?
    If that doesn't fix things, burn a system repair disc (you should make that in any case) and use it to access the recovery environment.
       Create a system repair disc
       What are the system recovery options in Windows?
     Try first a Startup Repair and let us know what happens.
    -Jerry

  • Replacement Product Key for Windows 8 Pro

    I bought a copy of Windows 8 Pro form you guys in late 2012, I've lost the Product Key that is needed to install it. (this happened when I had moved from one place to another) I just got through talking with Microsoft and they said that I would either have to purchase another copy or get in touch with you guys and see what you guys will do. Thanks.

    Hi RicKillebrew,
    I apologize for the delay in my reply. The forum became quite busy during the holiday season, and we’ve been trying to play catch up ever since, so I appreciate your patience while waiting for assistance. As you need an operating system for your computer to work, I’m sorry to hear Microsoft wasn’t able to assist you in recovering the Product Key associated with your purchase.
    Like jxs2 suggests, we might be able to help you locate the receipt so you may provide a proof of purchase to Microsoft. I’m not sure if this would assist you in receiving a replacement, though, as I’m not too familiar with their policies. Additionally, our super user, RealGeorgeW, hit the nail on the head in that we don’t capture the Product Key upon purchase. This means it wouldn’t be attached to your receipt.
    However, not all hope is lost. If you had a Geek Squad agent install the Windows 8 operating system onto your computer when you purchased it in 2012, we might have the Product Key on file with your service record. I can’t guarantee you this, but I would like to look through your account to see if we might have it. In order for me to do this, please send me a private message with as much of the following information as possible.
    ·         Full name:
    ·         Email address:
    ·         Phone number:
    ·         Address:
    ·         Customer Service Pin (found on receipt) or relative date of purchase:
    ·         Service order (if you have it on hand):
    You may send me a private message by logging into the forum and clicking on the button included in my signature below.
    I hope to hear from you soon,
    Alex|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Mac Mini stuck looking for Windows Boot Disk! Please help

    Hi all, I've been running Leopard on my Mac Mini off a FireWire hard drive enclosure. The 750gb hard drive in the enclosure is a drive I used to have in my old iMac.
    When I had my iMac I'd installed Windows via Bootcamp. So when running, the Mac Mini would show a Windows partition on the Leopard desktop. Today I needed to do something in Windows. so I went to Sys Prefs > Startup Disk and chose to reboot into that Windows partition. BIG MISTAKE
    Now whenever I turn the Mini on it looks for a Windows partition and tells me it can't find one. I've tried resetting the PMU, booting from Leopard DVD, holding Option, nothing works. The only thing that will work is if I put a Windows XP disk in and it will try and take me through the install process.
    How on earth do I get my Mac back booting into Leopard!?
    Message was edited by: Thomas Robinson

    I can't believe it was just the new Apple thin Alu Keyboard causing it! Plugged in an old Apple USB one and I got the Option startup menu straight away, totally bizarre!

  • How to fix window boot manager has been blocked by the current security policy on acerv5window 8.1

    Hi..  When do you xactly get this error message?Are you trying  to boot your computer using a cd?Are you trying to load another operating system?  Secure Boot is a feature designed to prevent malicious software and unauthorized media from loading during the boot process. This option is enabled by default, but can be turned off in UEFI / BIOS. Select your Windows 8 device and use the following steps to change the Secure Boot setting:Completely shut down the computer.Power on the system. As soon as the first logo screen appears, immediately press F2 to enter the BIOS.Use the right arrow key to select Security.Use the down arrow key to highlight Set Supervisor Password and press Enter.Create a password and press Enter. Retype the password to confirm and press Enter again.Use the right arrow key to select Boot.Press the down arrow key to select Secure Boot and press Enter.With the arrow key, highlight Disabled and press Enter.Press the F10 key and select Yes to save the changes and exit the BIOSWe suggest removing the supervisor password immediately after enabling Secure Boot. If you choose not to remove your supervisor password, make sure you write it down for future use. 

    I fixed this issue when I realised I had set a passoword many months ago when I was in Windows 8.1 If you found that your BIOS is locked, use a password you've used for other 'important' things. Cheers, Dave  I have an Acer Aspire E1-571 I'm having the same problem - however when I press F2 it goes to a blue security box saying: Enter Current Password: I don't have a password. It was set by the factory, I bought it new. How do I get around this. The last hard drive is trapped - I can't fix it, even with Microsoft's chat help when they accessed my computer remotely.I bought a new hard drive, and have the Windows 7 Professional DVD in the drive - but it can't access it under the current Security Settings - only to find it has a Password - thus my visit to this forum today. Any help you can offer would be gratefully accepted.

Maybe you are looking for