Ah, okay. That's a helpful piece of information. If you can see the existing partitions and delete them, it means the Windows installer is recognizing your hard drive or SSD. In this case, the issue is likely happening when the installer tries to create the new partitions needed for Windows 11 after you've deleted the old ones.
Here are some potential reasons why you might be able to delete partitions but not create new ones, along with troubleshooting steps:
Possible Causes (When You Can Delete Partitions):
- Insufficient Unallocated Space: Even after deleting partitions, there might not be enough contiguous unallocated space for Windows to create its required partitions (system reserved, primary, recovery).
- Drive Corruption or Errors: While the drive is being recognized, there might be underlying corruption or errors on the disk that prevent new partitions from being created.
- MBR vs. GPT Issue (More Likely): As mentioned before, Windows 11 strongly prefers (and sometimes requires) a GPT partition table for UEFI boot. If your drive was previously formatted with MBR, deleting the partitions might not automatically change the underlying partition table. The installer might be expecting GPT and failing to create partitions on an MBR disk (or vice-versa, though less common with Windows 11).
- BIOS/UEFI Settings Conflict: Even if you can see and delete partitions, certain BIOS/UEFI settings related to storage or boot mode could still be interfering with the partition creation process.
- Installation Media Issues: Although less likely if the drive is being recognized, the Windows 11 installation media itself could still have issues that manifest during the partition creation stage.
Troubleshooting Steps (When You Can Delete Partitions):
Ensure Sufficient Unallocated Space: After deleting the partitions, make sure you have a large enough block of "Unallocated Space" selected before trying to create a new partition or clicking "Next" to let Windows do it automatically. Windows 11 requires a significant amount of space.
Force GPT Conversion using DiskPart: This is a strong possibility. Even if you deleted MBR partitions, the drive might still be formatted as MBR. Let's try explicitly converting it to GPT using the Command Prompt:
- When you reach the "Where do you want to install Windows?" screen, press Shift + F10 to open a Command Prompt.
- Type the following commands one by one, pressing Enter after each:
diskpart
list disk
(Identify your target drive by its size and note the disk number).
select disk X
(Replace X
with the disk number of your target drive).
clean
(Warning: This will erase all data on the selected disk again, so be sure you've deleted the correct one).
convert gpt
exit
exit
- Now, go back to the Windows installation screen and try to create a new partition or click "Next."
Check BIOS/UEFI Boot Mode:
- Restart your computer and enter the BIOS/UEFI settings.
- Look for boot options. Ensure that if your system supports UEFI, it is enabled. If you're trying to install in UEFI mode, your installation media should also be set up for UEFI boot.
- If you're using an older system that only supports Legacy/CSM boot, ensure that is enabled in the BIOS.
Try Letting Windows Create Partitions Automatically: After deleting all existing partitions and ensuring you have a large block of unallocated space, simply select the unallocated space and click "Next." Let the Windows installer automatically create the necessary partitions. Sometimes, manually trying to create partitions can lead to issues if the sizes or types are not what Windows expects.
Run Disk Check (CHKDSK) from Command Prompt (If Possible): While you're in the Command Prompt (Shift + F10 on the installation screen), you can try running a disk check on the drive:
chkdsk /f /r C:
(Replace C:
with the drive letter assigned to your installation media - you might need to use list volume
in diskpart
to identify it).
- This command will check the disk for errors and attempt to fix them. It might take some time.
Recreate Bootable USB Drive: Even if the drive is being recognized, there's still a small chance the installation media has a subtle issue. Try recreating the bootable USB drive using the official Microsoft Media Creation Tool.
Consider Potential Hardware Issues: Although you can delete partitions, persistent issues creating new ones could still point to a problem with the drive itself. If none of the software-based solutions work, you might want to consider running diagnostic tools from the drive manufacturer or trying a different drive if possible.
Start with the force GPT conversion as it's a common culprit in Windows 11 installation issues on previously used drives. Let me know if any of these steps help or if you encounter any further errors!