Unable to Install Windows on This Disk
Encountering an error that says Windows installation is not possible on a selected disk is a common issue, and it can have several underlying causes. Let’s explore the main reasons for this error and how to resolve it effectively.
Common Causes of the Error
When the system notifies you that Windows installation on the chosen disk is not possible, this can stem from a few key reasons:
- Unsupported Partition Scheme: If your computer uses an MBR partition scheme but is set to UEFI mode, the installation might fail due to compatibility issues.
- Incorrect Disk Format: Windows installation requires the disk to be formatted in a compatible file system, usually NTFS.
- Inactive Partition: The primary partition on the disk needs to be marked as active so the system can use it during boot.
Solutions to Fix the Problem
1. Check the Partition Scheme
First, confirm whether your computer is using BIOS or UEFI mode:
- Open the Command Prompt during the Windows installation. You can do this by pressing Shift + F10 on the installation screen.
- Type
diskpart
and press Enter. - Enter
list disk
and check if the disk you need has theGPT
label. If it does, it's GPT; if not, it’s MBR.
If necessary, you can change the disk’s partition scheme using the convert gpt
or convert mbr
commands, but remember, this will erase all data on the disk.
2. Format the Disk to NTFS
Ensure the disk is formatted in NTFS. To do this:
- In the Command Prompt, enter
format fs=ntfs quick
after selecting the partition you want to use.
This will clear the partition and reformat it to the required file system.
3. Set the Partition as Active
If installation is still not possible, try marking the partition as active:
- In Command Prompt, select the partition where you want to install Windows using
select partition X
(whereX
is the partition number). - Enter
active
and press Enter.
This action will mark the partition as active, which may resolve the installation issue.