When installing win10, it prompts that Windows cannot be installed on the drive 0 partition.

When installing win10, it prompts that Windows cannot be installed on the drive 0 partition.

Cause Analysis

Win10 systems all add a quick startup function. Pre-installed win10 computers default to UEFI boot and GPT hard disk . The traditional boot method is Legacy boot and MBR hard disk . UEFI must correspond to GPT, and Legacy must correspond to MBR. If the BIOS turns on UEFI and the hard disk partition table format is MBR, Windows cannot be installed; if the BIOS turns off UEFI and the hard disk partition table format is GPT, Windows cannot be installed.
Most computers support both UEFI boot and Legacy boot. If you make a win10 x64 original boot disk, there may be two USB boot items. One is with UEFI, which means booting from UEFI, and the other is without UEFI, which means Legacy. When booting in the traditional way and encountering the problem of being unable to install on partition 1 of drive 0, you can restart the computer and reselect the USB disk boot option.

The simplest way is to click "Drive Options (Advanced)", then delete all partitions, and then click "New" to create a new partition. The newly created partition is the partition table type corresponding to your BIOS, or through the command method ( note Note: Converting the partition table format will clear all data on the hard disk!) :

1. Press Shift+F10 on the current installation interface to bring up the command prompt window;
2. Enter diskpart and press Enter to execute;
3. Enter the DISKPART command mode, enter list disk and press Enter to list the current disk information;
4. To To convert disk 0 format, enter select disk 0 and press Enter, enter clean to delete the disk partition;
5. Enter convert mbr and press Enter to convert the disk to MBR , enter convert gpt to convert to GPT ;
6. Finally enter exit and press Enter Exit the command prompt and return to the installation interface to continue installing the system.
7. Then click New Disk to install the driver.

I don’t have a picture here. Please forgive me. You should be able to solve this problem by following the above steps. If there are other problems, please leave a message below and discuss it together.

Guess you like

Origin blog.csdn.net/qq_43715354/article/details/113112727