Fix Unrecognized Partition in Windows Setup | Generated by AI

Home 2026.07

Question: Windows 11 Setup says “partition is of an unrecognized type” / “selected volume is offline” — what should I do?

This is usually because the target SSD has an old partition layout, RAID metadata, dynamic disk state, or leftover OEM/Linux partitions. If you do not need any data on this disk, the cleanest fix is to wipe and recreate the Windows partition.

⚠️ This deletes everything on the target disk.

At the Windows Setup screen:

  1. Press:
Shift + F10
  1. Open diskpart:
diskpart
  1. Find your disk:
list disk

Example:

Disk 0   1000 GB
Disk 1    512 GB

Identify your Lenovo SSD.

  1. Select it:
select disk 1

Verify:

detail disk

Make sure it is the correct SSD.

  1. Wipe partition information:
clean
  1. Create GPT partition:
convert gpt
exit

Close command prompt.

  1. Back in Windows Setup:

Windows will automatically create:

EFI System Partition
MSR Partition
Windows Partition
Recovery Partition

If clean fails because disk is offline

Run:

diskpart

list disk
select disk 1

attributes disk

If you see:

Current Read-only State: Yes

then:

attributes disk clear readonly
online disk

Try again:

clean

If the disk is not detected correctly

Check BIOS first.

For Lenovo Xiaoxin:

Enter BIOS:

F2

Look for:

Storage Controller Mode

Possible options:

RAID
AHCI

For a simple Windows install:

AHCI

is easier.

However, do not randomly switch RAID/AHCI if the existing Windows installation matters. For a new installation, AHCI is usually fine.


If you have important data on the disk

Do not run:

clean

Instead:

diskpart

list disk
select disk X
detail disk

Check whether it contains your files.

You can boot a Linux live USB and inspect:

lsblk
sudo fdisk -l

For your case (Lenovo Xiaoxin installing Windows fresh), I would do:

Shift + F10
↓
diskpart
↓
list disk
↓
select SSD
↓
clean
↓
convert gpt
↓
install Windows 11 Pro

This is the fastest and most reliable path.


Generated by AI. Curating and sharing still takes effort. If you find it useful, feel free to donate. WeChat: @lzwjavaWeChat QR · X: @lzwjava · Say hi 👋

Back Donate