DiskPart command breaks system installation partition restrictions
DiskPart is a command in the Windows environment that requires system service support when running the command, so it is not possible to run in a pure DOS, XP kernel WinPE environment, but in a Windows7 preinstallation environment.
When Setup runs to create a disk partition interface, press "SHIFT+F10" to start the command window. Then enter the DISKPART carriage return to enter the DISKPART command environment (the prompt is: "diskpart>"). Typing the appropriate command at this prompt allows you to partition, with the following commands: Clean, List, Select, Create, Format, Exit, which you can use to type help at the DiskPart command prompt or through a network query , this author no longer repeat. Assuming the target disk shown with the list-disk command is number NO. 0, the steps to establish the partition are as follows:
The following is a reference fragment:
List Disk
Select Disk 0
Clean
Create Partition Primary size=512000
Active
Format Quick
Create Partition Extended
Create Partition Logical size=512000
Format Quick
Create Partition Logical size=512000
Format Quick
Create Partition Logical
Format Quick
Exit
Exit
The order interpretation of each procedure is: Display all disks on this computer to properly operate the target disk, select No. 0, clear all partitions on the No. 0 disk, create primary partitions, capacity: 512000MB, activate primary partitions, quickly format current partitions, create extended partitions, and create logical partitions one, Capacity: 512000MB; Quickly format the current partition; Create logical partitions Two, capacity: 512000MB, quickly format the current partition, create logical partitions three, size the remaining capacity, quickly format the current partition, exit the DiskPart command environment, and exit the command window.
Then we click on "Where do you want to install Windows?" The "refresh" option in the window will show the partition results we want, so the partitioning operation ends. Is it easy and convenient to partition with this method?
Tip: When using DiskPart partitions, be sure to select the target disk, the currently selected disk/partition front will have the * symbol, we can use the list disk/partition to view. In addition, you can use Resan to rescan the disk of the machine before partitioning it so that the destination disk is selected correctly.
Another article:
Windows cannot be installed to this disk when the system is installed. The selected disks are in GPT partitioned form "The specific method is this:
Install the system to the prompt you cannot install the step in that disk, then hold down the SHIFT+F10 exhalation diskpart command, and then enter
DiskPart
List disk
Select Disk 0
Clean
Convert MBR
create partition primary size = XXX
Format Fs=ntfs Quick
Exit
Exit
The GPT partition is turned into an MBR, and then it's done.