Ah yes, that narrows it down-a small-form-factor AcePC (often with eMMC storage or an NVMe SSD) that had Windows 10 and now won't accept Windows 11. And yet, the disk was wiped, meaning you can write to it, but Setup is stubbornly saying: "No partition for you!"
Let's take a more surgical approach. Based on what you've said, here's what's most likely happening-and how to fix it methodically.
Why This Happens on AcePCs
These machines:
- Often use eMMC or weird BIOS configs (sometimes locked to "Windows Boot Manager")
- Might have Intel RST or RAID mode enabled by default
- May have a UEFI-only BIOS, which needs GPT not MBR
- Have a built-in block on unsigned bootloaders or wrong file systems
Step-by-Step Fix (Tailored to AcePC / Asus Mini PCs)
Step 1: Boot into Command Prompt via Setup
At the partition error screen:
- Press
Shift + F10
to open Command Prompt.
Step 2: Use DiskPart to Fully Wipe and Prep Drive
diskpart
list disk
select disk 0 # (or the main storage if not 0)
clean
convert gpt
create partition primary
format fs=ntfs quick
assign
exit
Then type:
exit
Click the back arrow in Setup, then click "Next" again. Still broken? Then...
Step 3: Check BIOS for SATA / eMMC Mode
Power off and reboot into BIOS (DEL
, F2
, or ESC
).
Find:
- Storage Controller setting: set it to AHCI, not Intel RST/RAID.
- Boot Mode: set to UEFI Only
- Secure Boot: Disable it temporarily.
- Fast Boot: Disable this too.
- CSM (Compatibility Support Module): Disable if possible.
Save and exit.
Some AcePC BIOSes won't show all options unless you plug in a USB keyboard and hit Ctrl + F1
or Fn + Tab
in BIOS to unlock advanced menus.
Step 4: Rebuild the Installer USB Correctly
Recreate the USB using Rufus and these exact settings:
- Partition Scheme: GPT
- Target system: UEFI (non CSM)
- File system: FAT32 (especially important if BIOS doesn't support NTFS boot)
- Use Windows 11 ISO.
Some AcePCs will NOT boot a USB if it's formatted NTFS.
Step 5: Install Without Creating Partitions in Setup
Back in the installer:
- Click on the unallocated space.
- Don't create partitions manually.
- Just click "Next" and let Windows create all the system partitions it wants.
If you still get the error:
Nuclear Option: Pre-Install via Command Line
From Shift + F10
, try:
diskpart
select disk 0
clean
convert gpt
exit
Then run this:
diskpart
select disk 0
create partition primary size=100000
format fs=ntfs quick
assign letter=C
active
exit
Then mount the USB (usually D:
or E:
), and run:
D:\setup.exe
Sometimes running the installer from the disk like this bypasses the error entirely.
Final Option: It's eMMC, and You Need a Driver
If your AcePC has eMMC storage, the installer might be missing the eMMC driver for that chipset (e.g., Intel Bay Trail/Cherry Trail, older Atom chips).
- Go to the Asus or AcePC support site on another machine.
- Download the Windows 10 eMMC or chipset driver package.
- Extract to a folder on the USB stick.
- On the error screen, click "Load Driver", point to that folder.
Summary of the Most Likely Fix:
Clean disk with DiskPart
+ Rebuild USB in GPT + FAT32 with Rufus + Set BIOS to UEFI/AHCI + Disable Secure Boot.
Once all that is aligned, the installer will recognize the storage and happily write its data.
Let me know your model number or chipset if you want driver links or want me to generate a custom Rufus preset for you.