Windows – Is it possible to Bootcamp Windows 8.1 using USB on Late 2011 MBP

bootcampusbwindows

I've been having a very difficult time trying to get Windows 8.1 running alongside OS X Yosemite and it's starting to become a real pain. I initially attempted to burn the Windows 8.1 ISO onto several DVDs, with all attempts falling short resulting in "Burn failed due to a medium write error".

So I read up on how to burn the ISO onto a USB via Bootcamp Assistant, and apparently this model doesn't allow for it. I tried to use some of the work arounds which only caused errors and the software failing to run. I then got the ISO burned via Rufus and installed rEFInd which showed the USB as a Windows disk. Selecting it just caused a "No bootable device — insert boot disk and press any key" screen and now I'm completely out of ideas.

So, what can I do at this point? I've just used up the last DVD trying to burn with the same error.

Any help would be much appreciated.

Best Answer

Here are the steps I use to install Windows without needing to burn to a DVD or flash drive. Keep in mind that the final product will NOT be a virtual machine:

  1. Install VirtualBox from http://download.virtualbox.org/virtualbox/4.3.28/VirtualBox-4.3.28-100309-OSX.dmg. Make sure it installs the command line tools.
  2. Once installed, open it and create a new VM by clicking "New" on the top left.
  3. Select the type to be "Microsoft Windows", and select the version as "Windows 8.1 (64 bit)", then give it a name of your choosing. Click "Continue"
  4. Click continue again (it won't matter how much RAM you give it for this process).
  5. Select "Do not add a virtual hard drive". We will be creating one on our own for our purposes. Click "Create", then "Continue".
  6. Now we have to open the Terminal. Type the following command: diskutil list. From the list of disks, make a note of the disk identifier in the last column that belongs to the 30GB partition you created for Windows. We will need this in the next step
  7. Run the command sudo chown $USER /dev/disk#s#. Replace disk#s# with the identifier from earlier. Enter your password and push return. Also run sudo chown $USER /dev/disk#s1. Use the same identifier, but replace the last number with a 1. Also run sudo chown $USER /dev/disk# using the first half of your identifier (minus the s# part).
  8. Unmount the disk by typing diskutil unmount /dev/disk#s# again, using your identifier.
  9. Now we have to create the disk for the VM to use for installation. Run the command VBoxManage internalcommands createrawvmdk -filename ~/RawWinDisk.vmdk -rawdisk /dev/disk# -partitions 1,#. Replace "disk#" with the appropriate first half of the identifier from earlier, and replace the second # sign with the last number in your identifier.
  10. Unmount the disk again diskutil unmount /dev/disk#s#, using your identifier.
  11. Now you should have a ".vmdk" file in your home folder. Go back into VirtualBox, select the VM you created, and click "Settings". Select the "Storage" tab, click on the "SATA" controller and click the second "+" sign directly to right of the controller (the hover text is "Add Hard Disk).
  12. (Note: Due to a fairly old bug, you can't command+tab away from the selection window we're about to create without VirtualBox bugging out and requiring a restart of the app. Try to complete this in one step) Click "Choose existing disk", and navigate to the VMDK we just created, which should be in your home folder. Click it and select "Open". Now you should see the newly added disk just below the "SATA" controller.
  13. Click on "Empty" just below the "IDE" controller, check "Live CD/DVD", and click the little CD icon next to "IDE Secondary".
  14. (Note: The same bug applies here. Try to do this in one step.) Click "Choose a virtual CD/DVD disk file...", navigate to your ISO, and open it.
  15. Start the VM and install windows on the 30G partition.
  16. When the installation is done and you're logged in, shut down Windows and you should see the disk created by Windows appear on the desktop. You can get the Boot Camp drivers for your laptop from https://support.apple.com/downloads/DL1720/en_US/BootCamp5.1.5621.zip. Put this on a flash drive formatted as ExFAT or FAT so Windows can read it.
  17. You should now be able to reboot into Windows by holding alt down, or selecting the disk in Startup Disk preferences.

This is a long process, but I believe I've covered all the steps involved... Let me know if anything goes wrong!