Fix Unrecognized Partition in Windows Setup | Generated by AI
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.
Method 1 (recommended for a fresh Windows install)
⚠️ This deletes everything on the target disk.
At the Windows Setup screen:
- Press:
Shift + F10
- Open diskpart:
diskpart
- Find your disk:
list disk
Example:
Disk 0 1000 GB
Disk 1 512 GB
Identify your Lenovo SSD.
- Select it:
select disk 1
Verify:
detail disk
Make sure it is the correct SSD.
- Wipe partition information:
clean
- Create GPT partition:
convert gpt
exit
Close command prompt.
- Back in Windows Setup:
- Click Refresh
- Select the unallocated space
- Click Next
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.
