Fix Windows 11 setup disk offline error | Generated by AI

Home 2026.07

Question: Windows 11 setup shows “partition is of an unrecognized type” / “selected volume is offline” — how to fix?

Answer: This happens when the disk is in a RAID/dynamic-disk state, or has a foreign disk signature (common after pulling a drive from another RAID-configured machine, or a disk that was part of Intel RST/VROC). Setup’s GUI “Bring Disk Online” button is greyed out because it can’t handle it — drop to diskpart.

  1. Press Shift + F10 on the setup screen to open a command prompt.
  2. Run:
diskpart
list disk
select disk 1          # match the disk index from the photo
detail disk             # check if it says "Status: Offline" and why
attributes disk clear readonly
online disk
  1. If it still won’t come online (foreign/dynamic disk):
list volume
select volume 1
attributes volume clear readonly
  1. If the disk shows as Dynamic instead of Basic, Setup can’t install to it at all — you must convert it. This is destructive:
clean
convert basic
create partition primary
format fs=ntfs quick

clean wipes the partition table on that disk — make sure you selected the right disk number, not your source/data drive. Run list disk again after select disk to confirm before clean.

  1. Exit diskpart (exit), close cmd, click Refresh in Setup, then try Next again.

Root cause is almost always: disk was previously used in a RAID array (Intel RST), was a dynamic disk from Storage Spaces, or has GPT protective MBR confusion from a different OS. If this is a fresh NVMe that was never touched, check BIOS SATA mode (RAID vs AHCI) — switching modes mid-install causes exactly this.

References:


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