1

I've got an old mid-2013 MacBook Air (A1465 EMC 2631) that's has no internal storage. Only external HD/SSD via USB. I have an M1 MacBook Air with macOS Sequoia to assist in this effort.

I used the old Air for years so I’m confident it will still work but I don't currently have the media with the OS on it and it's been in storage for a couple of years.

I now want to use it for the occasional Windows experiment. (Probably Windows 10)

Can I install Windows directly onto it from its current blank state?

Or is it only possible via Bootcamp? (Some drivers not available for instance?)

Or is it the case that I can install Windows directly onto it but need to install macOS first, or need to install Windows via BootCamp first?

(I specifically mention the lack of the original internal SSD because this causes issues for macOS. From memory I could do each upgrade from Mountain Lion to Sierra, but not High Sierra or newer. So this could also conceivably be a problem for installing Windows.)

9
  • What other machines and operating systems do you have available to help create the USB Windows flash drive installer and to download the Windows Support Software? The Windows Support Software contains the drivers. Commented Jul 20, 2024 at 17:59
  • I have my M1 MacBook with Sonoma and I found my external USB HD and SSD which have Sierra on them, and probably a thumb drive with Mountain Lion on it. I tried to run BootCamp and it told me it wouldn't work without an internal drive. Commented Jul 21, 2024 at 1:56
  • Use your Sonoma MacBook to run BootCamp and create the Windows install media with Mac drivers. If that is not possible you can boot the MacBook from Windows Install media and install Windows that way, though you will need the Mac Drivers from Apple.com/support once you have a working Windows installation. Commented Jul 21, 2024 at 14:23
  • 1
    @SteveChambers: I believe the GUI which comes with the Windows installation media will not allow installing Windows to USB drives. If I am right, then the OP should be made aware that extra steps would be necessary. Commented Jul 21, 2024 at 22:51
  • 1
    @SteveChambers: I would suggest you read (or reread) the question and all the comments. The OP is trying to install on a 2013 Intel MBA, but also has a M1 MBA with Sonoma installed. Commented Jul 22, 2024 at 14:29

1 Answer 1

2

This answer assumes you are installing Windows 10 to an external USB SSD. You should be able to use your M1 Mac to create the Windows 10 USB installer flash drive. However, I do not have a Apple Silicon Mac to test this.

Commands to Download Windows Support Software

Use the either the Mac running Sonoma or the Mac running Siera to download the Windows Support Software for your mid 2013 MacBook Air. The Windows drivers are included in this download. The commands were tested using an Intel Mac. I assume the commands will also work using Apple Silicon.

cd ~/Downloads
curl -o BootCampESD.pkg http://swcdn.apple.com/content/downloads/62/58/041-98143-A_HN8B941A1T/nknv1gt3xcgylggwc11kl5e0j4296tjfo1/BootCampESD.pkg
sudo installer -pkg BootCampESD.pkg -target /
hdiutil attach /Library/Application\ Support/BootCamp/WindowsSupport.dmg
rm -rf WindowsSupport
cp -R /Volumes/Boot\ Camp/ WindowsSupport
hdiutil detach /Volumes/Boot\ Camp
rm BootCampESD.pkg
sudo rm /Library/Application\ Support/BootCamp/WindowsSupport.dmg

The Windows Support Software is now stored in the WindowsSupport folder, which is in your Downloads folder.


Getting the Current Windows 10 ISO File

The current Windows 10 ISO file can be download from the Microsoft website Download Windows 10 Disc Image (ISO File). There are the following two factors to be aware of.

  • If your mid 2013 MacBook Air has not had macOS High Sierra or newer installed, then your Mac probably has not had the firmware update that allows booting from ExFAT formatted drives. Your Mac can boot from FAT32 formatted drives.
  • The ISO file will probably contain and sources/install.wim file that is greater than 4 GB. This file can be stored on ExFAT formatted drive but not FAT32 formatted drives.

This answer assumes the sources/install.wim will need to be split in smaller files in order to be stored on FAT32 formatted drive. Some of the way to accomplish this are given below.

This will use the Boot Camp ISO Converter to split the ISO. This was tested using macOS Sierra. The steps are given below.

  1. Download and install the Boot Camp ISO Converter to the Applications folder. Select this link to download the application.

  2. Open the Boot Camp ISO Converter application. Whenever you get the popup shown below, select the "Continue Trial" button.

  3. Select the "Select Windows 10 ISO" button shown below.

    Open the Windows 10 ISO file downloaded from Microsoft.

  4. Select the "Save..." button shown below.

    Chose to save to your Downloads folder. The conversion (splitting) will take place, as shown below.

  5. When finished, you will get the following popup.

    You can quit the Boot Camp ISO Converter application.

Note that the converted ISO file will end with .iso-split.iso.


Getting the Current WinNTSetup Folder

The GUI Windows 10 installer provided by Microsoft will not allow installing Windows 10 to a USB drive. This answer will instead use a third‑party utility call WinNTSetup, which does allow installing to a USB drive.

Download and unpack the current version of WinNTSetup. Currently, this would be version 5.3.5.2. To unpack, the current console version of 7‑Zip will need to be download and extracted. Currently, this would be version 24.07. See my answer to the question TPM 2.0 on a MacBook Pro with Windows for more information.

Note: This version of 7‑Zip does not work when executed from macOS Sierra. You probably will need to use your M1 Mac.

You can use either the link Mega or MediaFire to download WinNTSetup. You can use the link 7‑Zip to download 7‑Zip.

The following commands were used to extract the files.

cd ~/Downloads
xattr -dr com.apple.quarantine 7z2407-mac.tar.xz WinNTSetup_v5352.rar
mkdir 7zip
tar -xf 7z2407-mac.tar.xz -C 7zip
7zip/7zz x WinNTSetup_v5352.rar -oWinNTSetup_v5352

The WinNTSetup files will be in the folder WinNTSetup_v5352, which will be in your Downloads folder.


Build the Windows 10 Installer USB Flash Drive

Use the Disk Utility application to erase a 16 GB or larger USB flash drive. Choose the following.

Label Enter or Choose
the Following
Name WINSTALL
Format MS-DOS (FAT)
Scheme Master Boot Record

Do the following to populate the flash drive labeled WINSTALL.

  • Mount the converted Windows 10 ISO file and then use the Finder application to copy the contents to the flash drive.
  • Copy contents of the WindowsSupport folder to the flash drive. It is important that you copy the contents of the folder and not the folder itself.
  • Copy the WinNTSetup_v5352 folder to the flash drive.

Below is a snapshot of the contents of the root folder of the flash drive as shown in a Finder application window.

WINSTALL


Start Installing Windows 10

If you have not already done so, connect the external SSD and flash to the mid 2013 MacBook Air. Boot to the Startup Manager by holding down the alt/option key while the Mac is starting up. Select to UEFI boot from the flash drive. Proceed until you reach a display similar to the one shown below. This insures any necessary drivers are loaded.

Press the shift+F10 key combination to open a Command Prompt window, as shown below.


Erase and Partition the External SSD

Note: The external USB SSD will be completely erased. All existing data will be lost.

Enter the following commands. Here I have made the following assumptions.

  • The output from the list volume command will show a number assigned to each volume. I have assumed the number of the volume labeled WININSTALL is 0. If you get a different number, then make the appropriate substitution when entering the select volume command.
  • The output from the list disk command will show a number assigned to each disk. I have assumed the number of the disk, whose size matches that of the external SSD, is 1. If you get a different number, then make the appropriate substitution when entering the select disk command.
diskpart
list volume
select volume 0
assign letter=w
list disk
select disk 1
clean
convert gpt
create partition efi size=200
format fs=fat32 label=EFI quick
assign letter=s
create partition msr size=16
create partition primary
format fs=ntfs label=BOOTCAMP quick
assign letter=c
exit

Switch to Using WinNTSetup

Enter the following command to open the WinNTSetup application.

W:\WinNTSetup_v5352\WinNTSetup_x64.exe

Below is an image of the WinNTSetup window.

Make the following changes to the above window.

Label Choose the Following Comment
Select location of Windows installation files W:\sources\install.swm
Select location of the Boot drive S:\
Select the location of the Installation drive C:\
Image to Install† Windows 10 Pro You may wish to choose a different image.
Unattend W:\AutoUnattend.xml
Add Drivers W:\$WinPEDriver$

† Actually, this label is not shown.

The result is shown in the image below. When ready, select the "Setup" button.

after

When the popup shown below appears, select the "OK" button. WinNTSetup will start installing Windows 10 to the external SSD.

before install

When the popup shown below appears, select the "Reboot" button. The Mac will reboot and finish installing Windows 10.

after install

In the event the Mac does not reboot to the following image, then hold down the power button until the Mac turns off. Restart the Mac and hold down the alt/option key until the Mac Startup Manager icons appear. Hold down the control key and select to boot from the external USB SSD.

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.