Yeah, I actually brought a 2012 MacBook Pro back to life not long ago, and I was in the same boat — only had a Windows 11 PC on hand. Most of those old guides with TransMac or DMG2IMG either don’t work anymore or get stuck halfway through. Here’s what worked for me — two solid methods that still do the job if you want to create El Capitan bootable USB from Windows 11.
Method 1: Using UltraDMG (easiest way)
I tried a few things before landing on this one. UltraDMG still works great on Windows 11 for making macOS USB installers — including older ones like El Capitan. Here’s what I did:
(1) Download and install UltraDMG (it’s one of the few tools that can properly write .dmg to USB in macOS format).
(2) Plug in an 8GB or larger USB drive and back up any data on it first.
(3) Open UltraDMG → go to the Burn tab → load your El Capitan.dmg file.
(4) Choose your USB drive, click Burn, and let it run (takes about 20–25 minutes).
(5) Once done, plug that USB into your old Mac, hold Option (⌥) while booting, and pick the installer.
If you want a “click and done” option, this is the most reliable way to create El Capitan bootable USB from Windows 11.
Method 2: Command-line approach (no third-party app)
If you’d rather go old-school, you can do it using only built-in Windows tools. It’s slower but works fine.
(1) Open Command Prompt as Administrator.
(2) Type the following:
diskpart
list disk
select disk X (replace X with your USB number)
clean
create partition primary
format fs=fat32 quick
active
assign
exit
(3) Convert the .dmg to .iso using dmg2img (available on GitHub):
dmg2img ElCapitan.dmg ElCapitan.iso
(4) Mount the ISO (just double-click it in Windows 11).
(5) Copy all files from the mounted ISO to your USB manually.
That USB won’t be bootable on Windows, but your Mac will recognize it when booting. Insert it, hold Option (⌥) at startup, and select the installer.
Extra Tip: macOS Recovery
If the USB still won’t boot, remember that Macs made after 2011 have Internet Recovery built into firmware. You can reinstall macOS directly — hold Command + Option + R at startup.
Apple’s official guide:
How to download and install macOS - Apple Support
It connects to Apple’s servers and downloads the compatible macOS version automatically — no USB needed if Wi-Fi works.
If you want something quick and reliable — use UltraDMG.
If you prefer the manual route — go with diskpart + dmg2img.
Both can easily bring that 2012 Mac back to life without borrowing another Mac.