Only FAT32 Can be accepted by Arm64 version and version is over 6.7 wim.install can’t be used – need to be splitted into 3 parts
Story: i once bought 64GB Flash Disk HP thought it will fix the work but has only NTFS and ExFat which is not supported by my Boss PC Arm64 new generation, remember to check supported FAT32 and only option availalbe is to download
dism /Split-Image /ImageFile:D:\sources\install.wim /SWMFile:E:\sources\install.swm /FileSize:3800

how can i force windows 11 amr64 to go on fat32 disk it says install.wim is too large
This happens because the install.wim file inside Windows 11 ARM64 is usually larger than 4 GB, and FAT32 cannot store files bigger than 4 GB. That’s why you get the error when trying to copy it to a FAT32 USB.
But you still have several ways to fix it 👇
✅ Best Solution — Split install.wim into smaller files (Recommended)
You keep the USB as FAT32 (required for many ARM / UEFI devices like Snapdragon laptops), but split the big file.
Steps
- Mount the Windows ISO
- Right-click ISO → Mount
- Open Command Prompt as Administrator
- Run this command (change paths if needed):
dism /Split-Image /ImageFile:D:\sources\install.wim /SWMFile:E:\sources\install.swm /FileSize:3800
Explanation:
D:= mounted ISOE:= your USB drive- 3800 MB keeps files under FAT32 limit
After this you will get:
install.swm
install2.swm
install3.swm
Delete the original install.wim from USB if it exists.
Windows Setup automatically reads .swm files 👍
✅ Alternative — Use NTFS (if device supports it)
Format USB as NTFS:
format E: /FS:NTFS /Q
But ⚠️ many ARM Snapdragon devices require FAT32 for boot, so this may fail.
✅ Easiest Method — Use Rufus (Auto Fix)
Tool: Rufus
Steps:
- Insert USB
- Open Rufus
- Select ISO
- Start
Rufus automatically splits the WIM for you if needed.
✅ Pro Method — Dual Partition USB (Advanced)
Create:
- Small FAT32 partition → boot files
- Large NTFS partition → install.wim
Useful for advanced deployments.
⚠️ Important for Your Device (Lenovo Snapdragon)
Since you mentioned:
Lenovo IdeaPad Slim 3 Snapdragon
ARM Copilot PCs usually:
- Require UEFI + FAT32
- Do NOT boot from NTFS easily
So splitting WIM is safest.
👍 Quick Recommendation for You
Just use:
👉 Rufus OR DISM split method
That will work perfectly.
❓If you want
I can give you:
- Direct Windows 11 ARM64 ISO link
- Step-by-step for Lenovo Snapdragon recovery
- Or automatic script to split WIM
Just tell me 👍
Best Solution — Split install.wim into smaller files (Recommended) You keep the USB as FAT32 (required for many ARM / UEFI devices like Snapdragon laptops), but split the big file. Steps Mount the Windows ISO Right-click ISO → Mount Open Command Prompt as Administrator Run this command (change paths if needed): guide me
Perfect 👍 I’ll guide you step-by-step clearly.
This will allow your Windows 11 ARM64 USB (FAT32) to work on your Lenovo Snapdragon device.
✅ STEP 1 — Mount the Windows 11 ARM64 ISO
- Right-click the Windows 11 ARM64 ISO
- Click Mount
- A new drive will appear (example:
D:)
👉 Remember that drive letter (example: D:)
✅ STEP 2 — Prepare Your USB (FAT32)
- Insert USB (8GB or bigger)
- Open This PC
- Right-click USB → Format
- Choose:
- File system → FAT32
- Quick Format → ✔
- Click Start
Assume your USB is E: (check yours!)
✅ STEP 3 — Copy All Files Except install.wim
- Open mounted ISO drive (D:)
- Select all files
- Copy everything to USB (E:)
- Wait until copying finishes
⚠️ It will fail when copying:
sources\install.wim
That’s normal — skip it.
✅ STEP 4 — Split install.wim (Important Part)
Now:
- Click Start
- Type: cmd
- Right-click → Run as Administrator
Now type this command (replace letters if different):
dism /Split-Image /ImageFile:D:\sources\install.wim /SWMFile:E:\sources\install.swm /FileSize:3800
🔎 What this means:
D:= your mounted ISOE:= your USB- 3800 = size under 4GB limit
Press Enter
It will take 2–5 minutes.

✅ STEP 5 — Verify
Go to:
USB → sources
You should now see:
install.swm
install2.swm
install3.swm
If yes ✅ your USB is ready.
Windows setup automatically reads these files.

🎯 Done — You Can Now Install
- Insert USB
- Boot from USB (F12 or Novo button on Lenovo)
- Install Windows normally


