Failed to install from flash drive


Bri1

Member
Local time
2:10 PM
Posts
5
OS
Windows 11
Hello. Long story short, my father unexpectedly passed several months ago. I have his desktop, and am trying to reinstall windows on it after making a backup of personal files i want to keep.

I created a installation file on a flash drive, as doing the reset from the system settings would not let me do it. Stupidly, i formated all disc while in the installation program as i thought this would be a cakewalk, as I have previously installed windows from a flash drive before.

Here is where the problems arise: the setup progresses to 75% (once 76%) then gives me the error that windows 11 installation failed. No error code.

As the only other thing i have is a Macbook air for creating a new installation media, I am having problems even though i have tried different solutions (Reformating to exfat with GUID/master, tried splitting the 7,8gb install file in the ISO file so there are 2 files under 4GB, trying to install on different HDD/SSD with all methods), all different solutions leads to the same point of failure: Installation stops at 75/76% with the error that the windows11 installation failed. Both TPM and secure boot is enabled in BIOS. I am reluctant to reset the bios settings as my father OC´d his desktop and i would like to keep it that way, as I myself am not as competent concerning OC as he was.

I will admit that i have not researched good enough in my preparations for this (and yes, I will admit that formating the original windows install before installing the new OS is not a smart move) and as i understand it: FAT32 does not support files over 4GB, which appears to be the main root of the problem here. I have read that RUFUS is common as it defaults it to NTFS instead of FAT32. Would that be the solution to my problem, creating the media installation file using RUFUS? In that case my problem is that the only computer i have access to is a MAC which does not support RUFUS.

EDIT: The flash drive is a PNY 32GB USB 3.1

Help would be appriciated!

GPU: 5060 Ti 16GB

CPU: i5 13600KF

RAM: 32GB DDR4

Motherboard: MSI Z690 Tomahawk WIFI DDR4.
 
Windows Build/Version
Windows 11 PRO
Last edited:

My Computer My Computer

At a glance

Windows 11i5 13600KF32GB DDR45060 Ti 16GB
OS
Windows 11
Computer type
PC/Desktop
CPU
i5 13600KF
Motherboard
MSI Z690 Tomahawk WIFI DDR4.
Memory
32GB DDR4
Graphics Card(s)
5060 Ti 16GB
The biggest challenge when creating Windows 11 installation media on macOS or Linux is that the sources/install.wim file now exceeds 4 GB. UEFI booting requires the FAT32 file system on the USB flash drive, which does not support individual files larger than 4 GB.
  1. If using Linux: The best and easiest option is Ventoy. Install Ventoy onto the USB drive, which allows you to simply copy the Windows 11 ISO file directly as-is into the USB drive's file partition. Ventoy can boot it directly.
    For instance, balenaEtcher is unable to flash a Windows 11 ISO into a UEFI-compatible USB drive. It merely performs a raw clone of the ISO image to the USB.
  2. If using Mac: Since Ventoy or Rufus are not available for macOS, you can use the wimlib tool in the Terminal (installable via Homebrew) to split the install.wim file into smaller parts to fit the USB drive.
  3. If using a Windows machine: Create the USB drive using either the Media Creation Tool (which downloads pre-split .swm files) or Rufus (which creates a small FAT partition in addition to the NTFS partition for the UEFI:NTFS bootloader).

ChatGPT:

Use Homebrew + wimlib

1. Install Homebrew (if it isn't already installed):

Code:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

2. Install wimlib:

Code:
brew install wimlib

3. Mount the Windows 11 ISO by double-clicking it in Finder.

For example, if it is mounted as:

Code:
/Volumes/CCCOMA_X64FRE_EN-US_DV9

4. Split
Code:
install.wim
into
Code:
.swm
files:

Code:
mkdir ~/Win11USB

wimlib-imagex split \
"/Volumes/CCCOMA_X64FRE_EN-US_DV9/sources/install.wim" \
~/Win11USB/install.swm \
3800

This creates:

Code:
install.swm
install2.swm
install3.swm
...

Windows Setup automatically recognizes split
Code:
.swm
files.

Create the USB

Find the USB device:

Code:
diskutil list

Assume the USB is
Code:
/dev/disk4
.

Erase it as GPT/FAT32:

Code:
diskutil eraseDisk MS-DOS WIN11 GPT /dev/disk4

Copy everything from the ISO except
Code:
install.wim
:

Code:
rsync -av \
--exclude=sources/install.wim \
/Volumes/CCCOMA_X64FRE_EN-US_DV9/ \
/Volumes/WIN11/

Copy the split WIM files:

Code:
cp ~/Win11USB/install*.swm \
/Volumes/WIN11/sources/

Eject the USB:

Code:
diskutil eject /dev/disk4

The USB is now a standard UEFI-bootable Windows 11 installation drive that works on systems requiring a FAT32 EFI partition.
 
Last edited:

My Computers My Computers

  • At a glance

    Windows 11 ProAMD Ryzen 9 9950X3DKingston FURY Beast 64GB (2x32GB) DDR5 6000MT/sASUS TUF Gaming Radeon RX 9070 OC Edition 16G...
    OS
    Windows 11 Pro
    Computer type
    PC/Desktop
    CPU
    AMD Ryzen 9 9950X3D
    Motherboard
    ASRock B650E Taichi Lite
    Memory
    Kingston FURY Beast 64GB (2x32GB) DDR5 6000MT/s
    Graphics Card(s)
    ASUS TUF Gaming Radeon RX 9070 OC Edition 16GB GDDR6
    Hard Drives
    Solidigm P44 Pro 2TB M.2 NVMe SSD
  • At a glance

    Windows 11 HomeIntel Core Ultra 9 275HX64GB (2x 32GB) DDR5-6400NVIDIA GeForce RTX 5080 16GB GDDR7 Laptop GPU
    Operating System
    Windows 11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo Legion Pro 7i Gen 10 16"
    CPU
    Intel Core Ultra 9 275HX
    Memory
    64GB (2x 32GB) DDR5-6400
    Graphics card(s)
    NVIDIA GeForce RTX 5080 16GB GDDR7 Laptop GPU
    Hard Drives
    2x 1TB M.2 NVMe SSD (SK Hynix)
The biggest challenge when creating Windows 11 installation media on macOS or Linux is that the sources/install.wim file now exceeds 4 GB. UEFI booting requires the FAT32 file system on the USB flash drive, which does not support individual files larger than 4 GB.
  1. If using Linux: The best and easiest option is Ventoy. Install Ventoy onto the USB drive, which allows you to simply copy the Windows 11 ISO file directly as-is into the USB drive's file partition. Ventoy can boot it directly.
    For instance, balenaEtcher is unable to flash a Windows 11 ISO into a UEFI-compatible USB drive. It merely performs a raw clone of the ISO image to the USB.
  2. If using Mac: Since Ventoy or Rufus are not available for macOS, you can use the wimlib tool in the Terminal (installable via Homebrew) to split the install.wim file into smaller parts to fit the USB drive.
  3. If using a Windows machine: Create the USB drive using either the Media Creation Tool (which downloads pre-split .swm files) or Rufus (which creates a small FAT partition in addition to the NTFS partition for the UEFI:NTFS bootloader).

ChatGPT:

While i tried this in a previous attempt. I tried following the way you posted it.
The same error appears at 75% again.
 

My Computer My Computer

At a glance

Windows 11i5 13600KF32GB DDR45060 Ti 16GB
OS
Windows 11
Computer type
PC/Desktop
CPU
i5 13600KF
Motherboard
MSI Z690 Tomahawk WIFI DDR4.
Memory
32GB DDR4
Graphics Card(s)
5060 Ti 16GB
I'd consider finding a friend with a Windows machine and building your installation media there. I'd also consider a different FLASH drive in case there's a problem with that one. Make installation media on both of them, you'll have two chances to succeed.
 

My Computers My Computers

  • At a glance

    Win 11 Pro 25H2, Build 26200.8894Intel Core i5 1450064GB DDR4GeForce RTX 4060
    OS
    Win 11 Pro 25H2, Build 26200.8894
    Computer type
    PC/Desktop
    Manufacturer/Model
    Home Brew
    CPU
    Intel Core i5 14500
    Motherboard
    Gigabyte B760M G P WIFI
    Memory
    64GB DDR4
    Graphics Card(s)
    GeForce RTX 4060
    Sound Card
    Chipset Realtek
    Monitor(s) Displays
    LG 45" Ultragear, Acer 24" 1080p
    Screen Resolution
    5120x1440, 1920x1080
    Hard Drives
    Crucial P310 2TB 2280 PCIe Gen4 3D NAND NVMe M.2 SSD (O/S)
    Silicon Power 2TB US75 NVMe PCIe Gen4 M.2 2280 SSD (backup)
    Crucial BX500 2TB 3D NAND (2nd backup)
    Seagate 4TB Ironwolf, rotating HDD archive files
    External off-line backup Drives: 2 NVMe 4TB drives in external enclosures
    PSU
    Thermaltake Toughpower GF3 750W
    Case
    LIAN LI LANCOOL 216 E-ATX PC Case
    Cooling
    Lots of fans!
    Keyboard
    Microsoft Comfort Curve 2000
    Mouse
    Logitech G305
    Internet Speed
    Verizon FiOS 1GB
    Browser
    Firefox
    Antivirus
    Malware Bytes & Windows Defender Security
  • At a glance

    Win 11 Pro 25H2, Build 26200.8894Intel Core i5 1440032GB DDR5Intel 700 Embedded GPU
    Operating System
    Win 11 Pro 25H2, Build 26200.8894
    Computer type
    PC/Desktop
    Manufacturer/Model
    Home Brew
    CPU
    Intel Core i5 14400
    Motherboard
    Gigabyte B760M DS3H AX
    Memory
    32GB DDR5
    Graphics card(s)
    Intel 700 Embedded GPU
    Sound Card
    Realtek Embedded
    Monitor(s) Displays
    27" HP 1080p
    Screen Resolution
    1920x1080
    Hard Drives
    Crucial P310 2TB 2280 PCIe Gen4 eD NAND PCIe SSD
    Samsung EVO 990 2TB NVMe Gen4 SSD
    Samsung 2TB SATA SSD
    PSU
    Thermaltake Smart BM3 650W
    Case
    Okinos Micro ATX Case
    Cooling
    Fans
    Keyboard
    Microsoft Comfort Curve 2000
    Mouse
    Logitech G305
    Internet Speed
    Verizon FiOS 1GB
    Browser
    Firefox
    Antivirus
    Malware Bytes & Windows Defender Security
  • Nimo N171 17" Laptop, (Intel i3-1215U, 16GB RAM, 2TB NVMe, Win11 Pro)
    Acemagic Vista Mini PC V1 (Intel N150, 16GB RAM, 1TB NVMe, Win11 Pro)
    HP ENVY h8-1540t, (24GB RAM, 2TB SSD, 2TB HDD, Win11 Pro)
I'd consider finding a friend with a Windows machine and building your installation media there.
As of right now, I can´t see any other options. I have considered using or getting virtual machine on my mac, but it seems like too much of an hassle.
 

My Computer My Computer

At a glance

Windows 11i5 13600KF32GB DDR45060 Ti 16GB
OS
Windows 11
Computer type
PC/Desktop
CPU
i5 13600KF
Motherboard
MSI Z690 Tomahawk WIFI DDR4.
Memory
32GB DDR4
Graphics Card(s)
5060 Ti 16GB
As of right now, I can´t see any other options. I have considered using or getting virtual machine on my mac, but it seems like too much of an hassle.
Why can't you find someone, even remotely, that will generate the installation USB drive for you? Ship the FLASH drive or drives to them and they ship them back.
 

My Computers My Computers

  • At a glance

    Win 11 Pro 25H2, Build 26200.8894Intel Core i5 1450064GB DDR4GeForce RTX 4060
    OS
    Win 11 Pro 25H2, Build 26200.8894
    Computer type
    PC/Desktop
    Manufacturer/Model
    Home Brew
    CPU
    Intel Core i5 14500
    Motherboard
    Gigabyte B760M G P WIFI
    Memory
    64GB DDR4
    Graphics Card(s)
    GeForce RTX 4060
    Sound Card
    Chipset Realtek
    Monitor(s) Displays
    LG 45" Ultragear, Acer 24" 1080p
    Screen Resolution
    5120x1440, 1920x1080
    Hard Drives
    Crucial P310 2TB 2280 PCIe Gen4 3D NAND NVMe M.2 SSD (O/S)
    Silicon Power 2TB US75 NVMe PCIe Gen4 M.2 2280 SSD (backup)
    Crucial BX500 2TB 3D NAND (2nd backup)
    Seagate 4TB Ironwolf, rotating HDD archive files
    External off-line backup Drives: 2 NVMe 4TB drives in external enclosures
    PSU
    Thermaltake Toughpower GF3 750W
    Case
    LIAN LI LANCOOL 216 E-ATX PC Case
    Cooling
    Lots of fans!
    Keyboard
    Microsoft Comfort Curve 2000
    Mouse
    Logitech G305
    Internet Speed
    Verizon FiOS 1GB
    Browser
    Firefox
    Antivirus
    Malware Bytes & Windows Defender Security
  • At a glance

    Win 11 Pro 25H2, Build 26200.8894Intel Core i5 1440032GB DDR5Intel 700 Embedded GPU
    Operating System
    Win 11 Pro 25H2, Build 26200.8894
    Computer type
    PC/Desktop
    Manufacturer/Model
    Home Brew
    CPU
    Intel Core i5 14400
    Motherboard
    Gigabyte B760M DS3H AX
    Memory
    32GB DDR5
    Graphics card(s)
    Intel 700 Embedded GPU
    Sound Card
    Realtek Embedded
    Monitor(s) Displays
    27" HP 1080p
    Screen Resolution
    1920x1080
    Hard Drives
    Crucial P310 2TB 2280 PCIe Gen4 eD NAND PCIe SSD
    Samsung EVO 990 2TB NVMe Gen4 SSD
    Samsung 2TB SATA SSD
    PSU
    Thermaltake Smart BM3 650W
    Case
    Okinos Micro ATX Case
    Cooling
    Fans
    Keyboard
    Microsoft Comfort Curve 2000
    Mouse
    Logitech G305
    Internet Speed
    Verizon FiOS 1GB
    Browser
    Firefox
    Antivirus
    Malware Bytes & Windows Defender Security
  • Nimo N171 17" Laptop, (Intel i3-1215U, 16GB RAM, 2TB NVMe, Win11 Pro)
    Acemagic Vista Mini PC V1 (Intel N150, 16GB RAM, 1TB NVMe, Win11 Pro)
    HP ENVY h8-1540t, (24GB RAM, 2TB SSD, 2TB HDD, Win11 Pro)
here is a link to make a Windows bootable USB from within MacOS

best of luck Steve ..
 

My Computers My Computers

  • At a glance

    Windows 11 HomeRyzen 7 5825u64GB DDR4 3200Ryzen 7 5825u
    OS
    Windows 11 Home
    Computer type
    PC/Desktop
    Manufacturer/Model
    HP 24" AiO
    CPU
    Ryzen 7 5825u
    Motherboard
    HP
    Memory
    64GB DDR4 3200
    Graphics Card(s)
    Ryzen 7 5825u
    Sound Card
    RealTek
    Monitor(s) Displays
    24" HP AiO
    Screen Resolution
    1920 x 1080 @60 Hz
    Hard Drives
    1TB WD Blue SN580 M2 SSD Partitioned.
    2x 1TB USB HDD External Backup/Storage.
    PSU
    90W external power brick
    Case
    24" All in One
    Cooling
    Default Air Cooling
    Keyboard
    HP WiFi UK extended
    Mouse
    HP WiFi 3 Button
    Internet Speed
    1GB full fibre
    Browser
    Edge & Firefox
    Antivirus
    AVG Internet Security/Windows Defender
    Other Info
    Mainly Open Source Software
  • At a glance

    Ubuntu 22.04.5 LTSi5 7200u16GB DDR4Intel
    Operating System
    Ubuntu 22.04.5 LTS
    Computer type
    Laptop
    Manufacturer/Model
    Dell 13" Latitude 2017
    CPU
    i5 7200u
    Motherboard
    Dell
    Memory
    16GB DDR4
    Graphics card(s)
    Intel
    Sound Card
    Intel
    Monitor(s) Displays
    13" Dell Laptop
    Hard Drives
    250GB Crucial 2.5" SSD
    Mouse
    Generic WiFi 3 button
    Internet Speed
    WiFi only
    Browser
    Firefox
    Antivirus
    ClamAV TK
    Other Info
    Mainly Open Source Software
Why can't you find someone, even remotely, that will generate the installation USB drive for you? Ship the FLASH drive or drives to them and they ship them back.
I can, just no one availible today, and i would prefer to get it done ASAP. But I might just have to get a friend to create it.
 

My Computer My Computer

At a glance

Windows 11i5 13600KF32GB DDR45060 Ti 16GB
OS
Windows 11
Computer type
PC/Desktop
CPU
i5 13600KF
Motherboard
MSI Z690 Tomahawk WIFI DDR4.
Memory
32GB DDR4
Graphics Card(s)
5060 Ti 16GB
WinDiskWriter - Windows Bootable USB creator for macOS


Split Windows Installer Images
Newer Windows ISOs contain a large (>4GB) install.wim file.
Since FAT32 only supports file sizes up to 4GB, WinDiskWriter automatically splits it for you!

If the Windows 11 installation still fails at 75% when using a USB created with WinDiskWriter, the problem is likely elsewhere. An incorrectly created installation USB (for example, one created by writing the ISO directly via dd) typically either fails to boot entirely or throws the error: "A media driver your computer needs is missing." on the partition selection screen.
 
Last edited:

My Computers My Computers

  • At a glance

    Windows 11 ProAMD Ryzen 9 9950X3DKingston FURY Beast 64GB (2x32GB) DDR5 6000MT/sASUS TUF Gaming Radeon RX 9070 OC Edition 16G...
    OS
    Windows 11 Pro
    Computer type
    PC/Desktop
    CPU
    AMD Ryzen 9 9950X3D
    Motherboard
    ASRock B650E Taichi Lite
    Memory
    Kingston FURY Beast 64GB (2x32GB) DDR5 6000MT/s
    Graphics Card(s)
    ASUS TUF Gaming Radeon RX 9070 OC Edition 16GB GDDR6
    Hard Drives
    Solidigm P44 Pro 2TB M.2 NVMe SSD
  • At a glance

    Windows 11 HomeIntel Core Ultra 9 275HX64GB (2x 32GB) DDR5-6400NVIDIA GeForce RTX 5080 16GB GDDR7 Laptop GPU
    Operating System
    Windows 11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo Legion Pro 7i Gen 10 16"
    CPU
    Intel Core Ultra 9 275HX
    Memory
    64GB (2x 32GB) DDR5-6400
    Graphics card(s)
    NVIDIA GeForce RTX 5080 16GB GDDR7 Laptop GPU
    Hard Drives
    2x 1TB M.2 NVMe SSD (SK Hynix)
If the computer contains two or more disks, it is a known issue for installation to fail in some systems. Try disconnecting the other disks leaving only the Windows disk. Alternatively you can disable the other disks in BIOS, but I think is better to disconnect them. Also at 75% is very likely that Setup has finished most of the installation and searches for updates and drivers. One of them might fail making the whole installation fail. To prevent that make sure you are disconnected from the internet, if there is a LAN cable disconnect it or disable Ethernet device in BIOS.
 

My Computers My Computers

  • At a glance

    Windows 11 Pro 23H2 (5699), 25H2 (8875)Mobile DualCore Intel Core 2 Duo T7250, 2000 MHz4GBMobile Intel(R) GMA 4500M (Mobile 4 series)
    OS
    Windows 11 Pro 23H2 (5699), 25H2 (8875)
    Computer type
    Laptop
    Manufacturer/Model
    Acer Extensa 5630EZ
    CPU
    Mobile DualCore Intel Core 2 Duo T7250, 2000 MHz
    Motherboard
    Acer Extensa 5630
    Memory
    4GB
    Graphics Card(s)
    Mobile Intel(R) GMA 4500M (Mobile 4 series)
    Sound Card
    Realtek ALC268 @ Intel 82801IB ICH9 - High Definition Audio Controller
    Monitor(s) Displays
    1
    Screen Resolution
    1280x800
    Hard Drives
    Samsung SSD 850 EVO 250GB SATA Device (250 GB, SATA-III)
    Internet Speed
    VDSL 50 Mbps
    Browser
    MICROSOFT EDGE
    Antivirus
    WINDOWS DEFENDER
    Other Info
    Legacy MBR installation, no TPM, no Secure Boot, no WDDM 2.0 graphics drivers, no SSE4.2, cannot get more unsupported ;) This is only my test laptop. I had installed Windows 11 here before upgrading my main PC. For my main PC I use everyday see my 2nd system specs.
  • At a glance

    Windows 11 Pro v25H2 (build 26200.8875)Intel Core-i7 3770 3.40GHz s1155 (3rd generat...2x Kingston Hyper-X Blu 8GB DDR3-1600GIGABYTE GeForce RTX 3050 WINDFORCE OC V2 6GB...
    Operating System
    Windows 11 Pro v25H2 (build 26200.8875)
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom-built PC
    CPU
    Intel Core-i7 3770 3.40GHz s1155 (3rd generation)
    Motherboard
    Asus P8H61 s1155 ATX
    Memory
    2x Kingston Hyper-X Blu 8GB DDR3-1600
    Graphics card(s)
    GIGABYTE GeForce RTX 3050 WINDFORCE OC V2 6GB (GV-N3050WF2OCV2-6GD)
    Sound Card
    Realtek HD audio (ALC887)
    Monitor(s) Displays
    Sony Bravia KDL-19L4000 19" LCD TV via VGA
    Screen Resolution
    1440x900 32-bit 60Hz
    Hard Drives
    WD Blue SA510 2.5 1000GB SSD as system disk, Western Digital Caviar Purple 4TB SATA III (WD40PURZ) as second
    PSU
    Thermaltake Litepower RGB 550W Full Wired
    Case
    SUPERCASE MIDI-TOWER
    Cooling
    Deepcool Gamma Archer CPU cooler, 1x 8cm fan at the back
    Keyboard
    Mitsumi 101-key PS/2
    Mouse
    Sunnyline OptiEye PS/2
    Internet Speed
    100Mbps
    Browser
    Microsoft Edge, Mozilla Firefox
    Antivirus
    Microsoft Windows Defender
    Other Info
    Legacy BIOS (MBR) installation, no TPM, no Secure Boot, WDDM 3.0 graphics drivers, WEI score 7.4
WinDiskWriter - Windows Bootable USB creator for macOS




If the Windows 11 installation still fails at 75% when using a USB created with WinDiskWriter, the problem is likely elsewhere. An incorrectly created installation USB (for example, one created by writing the ISO directly via dd) typically either fails to boot entirely or throws the error: "A media driver your computer needs is missing." on the partition selection screen.
Thank you for this, however the program crashed when I started the writing process.

If the computer contains two or more disks, it is a known issue for installation to fail in some systems. Try disconnecting the other disks leaving only the Windows disk. Alternatively you can disable the other disks in BIOS, but I think is better to disconnect them. Also at 75% is very likely that Setup has finished most of the installation and searches for updates and drivers. One of them might fail making the whole installation fail. To prevent that make sure you are disconnected from the internet, if there is a LAN cable disconnect it or disable Ethernet device in BIOS.
The PC has 2 HDD’s and 3 SSD’s, so that might also be an issue, i will check it out! Thanks!
 

My Computer My Computer

At a glance

Windows 11i5 13600KF32GB DDR45060 Ti 16GB
OS
Windows 11
Computer type
PC/Desktop
CPU
i5 13600KF
Motherboard
MSI Z690 Tomahawk WIFI DDR4.
Memory
32GB DDR4
Graphics Card(s)
5060 Ti 16GB
Back
Top Bottom