I followed this tutor here and got success: https://www.youtube.com/watch?v=hE8If6gabUI.
The “Create a Windows 7 install disk” option is hidden because your system’s capabilities are limited. For instance, older Macs can not boot from external USB disks, therefore creating an installer onto a USB disk would make no sense.
[external_link_head]Still, if you want to create an installer on an external disk regardless, all you have to do is edit Boot Camp Assistant’s “Info.plist” file:
- Open Package content of Boot Camp Assistant app, backup
Info.plist
file somewhere, then open the old one with XCode.- Edit file:
- Edit section’s title:
PreUSBBootSupportedModels
toUSBSupportedModels
(if it’s alreadyUSBBootSupportedModels
-> skip this step)- Add your System’s
model identifier
(Find it bySystem Information
app) intoUSBSupportedModels
section.- Add your
Boot ROM version
(Find bySystem Information
app) toDARequiredROMVersions
section- Save.
- Restart BootCamp
A comment of @dusanvf:
If your Bootcamp crashes after this, write this into terminal:
sudo codesign -fs - /Applications/Utilities/Boot\ Camp\ Assistant.app/
answered Jun 22 ’15 at 20:20
samthui7samthui7
4404 silver badges7 bronze badges
9
Here is the page which helped me to enable this option Create a Windows Install USB on OS X Yosemite.
Creating a Windows installer from OS X is actually quite simple – Boot Camp Assistant can do it for you. If you’re on a newer machine without an optical drive, you probably have an option that says “Create a Windows 7 or later version install disk”. Click that and point it to your ISO image. Done.
If you’re on an older machine (like my Hoth), you won’t find this option. Don’t Panic! Hacking Boot Camp Assistant into small bits and reassembling it will do the trick.
First of all, we’ll modify Boot Camp Assistant’s Info.plist. It’s at
[external_link offset=1]/Applications/Utilities/Boot Camp Assistant.app/Contents/Info.plist
. Open it in your favorite text editor. (Note: this requires elevated privileges).Note: If you are running OS X 10.11 or newer, you will be unable to edit
Info.plist
. Instead, copyBoot Camp Assistant.app
to your desktop, and follow the instructions using the copy.Once we’re in
Info.plist
, we’ll tell it which machines can create USB disks. Look for the key PreUSBBootSupportedModels. Change it to USBBootSupportedModels. Makes sense, right? Save.Then, we’ll need to resign Boot Camp Assistant, otherwise it will refuse to run. For this, we’ll need the Xcode command line tools installed. Then it’s as easy as
sudo codesign -fs - /Applications/Utilities/Boot\ Camp\ Assistant.app
Now restart Boot Camp Assistant, and you’ll find the option you were looking for.
answered Aug 9 ’15 at 11:56
4
If anybody is struggling with this on Mojave (10.14) it’s pretty simple:
- Copy Boot Camp Assistant.app to your desktop (just select it inside Applications/Utilites cmd+c and cmd+v on your desktop)
- On your desktop, tap on the boot camp icon with ctrl + click which opens contextual menu, select show contents and open info.plist in Xcode.
- Remove
pre
fromPreUSBBootSupportedModels
, so onlyUSBBootSupportedModels
remains and add your model in there. - Add your model also inside
ExternalInstallOnlyModels
- Open Boot Camp from desktop and you will see the option.
answered Jan 25 ’19 at 18:18
MarkusMarkus
2211 gold badge2 silver badges8 bronze badges
1
If the “Create a Windows 7 or later install disk” check box does not appear, then this usually means an USB flash drive can not be used to install Windows on your Mac. An example of this check box is shown below. Since your Mac does not show this check box, I assume you have an optical drive. You need to burn the iso image to a blank DVD using the Disk Utility application.
Now there are ways to make this check box appear so the files can be copied to the flash drive, but most likely the firmware in your Mac will not allow you to boot Windows from a flash drive. Even if you can boot to OS X using a flash drive, this does not mean you can boot to Windows using a flash drive. You may need to boot to Windows from the optical drive to install it on to your internal drive.
Steps to burn an iso to DVD: (Taken from Burn ISO in Mac OS X)
- Open the “Disk Utility” app, it’s located in /Applications/Utilities/
- Pull down the File menu and select ‘Open Disk Image’
- Navigate to the ISO image file that you want burned and click “OK”
- Insert a Blank DVD
- Select “Verify burned data”
- Click ‘Burn’ and wait until the image has finished burning to the disc
As for the drivers for Windows. You can either download them using the Boot Camp Assistant or download them from Boot Camp: System requirements for Microsoft Windows operating systems. You install the drivers after you finish installing Windows.
One final note: Do not change the partitioning using anything from Microsoft. The partitioning can only be successfully changed using OS X software. The only exception is Windows can format the BOOTCAMP partition.
answered Feb 6 ’15 at 21:27
David AndersonDavid Anderson
27.8k7 gold badges40 silver badges76 bronze badges
[external_link offset=2]5
This is correct. You need to have a bootable media with Windows on it to install Windows on bootcamp. When the process reboots to install Windows, the .iso will be unmounted and useless.
You can write the ISO to a flash drive (8GB or more) using disk utility and use that.
answered Feb 6 ’15 at 14:00
sdmeyerssdmeyers
2,1999 silver badges13 bronze badges
2
Actually, if I recall correctly, the Bootcamp installer should make the bootable install media (8GB flash drive) itself.
If you just mount the ISO so that it shows up as a disk (double click on the ISO) that may be all you need to do. The BootCamp Assistant will then see the file as a (virtual) drive and copy the necessary files to your install media.
answered Feb 6 ’15 at 17:31
Steve ChambersSteve Chambers
20.7k3 gold badges32 silver badges53 bronze badges
1
answered Nov 7 ’15 at 7:12
1
You must log in to answer this question.
Not the answer you’re looking for? Browse other questions tagged bootcamp windows iso .
[external_footer]