Forum Discussion
Azraelen
Aug 08, 2024Copper Contributor
How to create Catalina boot USB installer on Windows PC?
I'm a technical writer and web designer, so I have a good handle on software and tools. However, I'm more familiar with macOS environments and usually work with a MacBook M1. I recently ran into a si...
Dustinkin
Aug 08, 2024Copper Contributor
Azraelen Creating a macOS Catalina bootable USB on a Windows PC using the command line requires a few steps involving specific tools. First, obtain the macOS Catalina DMG file from a trusted source. You'll need this to create the bootable USB.
Insert your USB drive (at least 16GB) into your Windows PC. Open Command Prompt as an administrator and use the following commands to format the USB drive.
diskpart
list disk
select disk <disk number>
clean
create partition primary
format fs=ntfs quick
exit
Right-click your USB drive in the left pane and select "Restore with Disk Image." Select the macOS Catalina DMG file and start the process. This will take some time, so be patient. Once the process is complete, your USB drive will be a macOS Catalina bootable USB, ready for installation on a compatible Mac.