New
#1
failing to partition with DISKPART
Hi,
I have 1TB drive (931 GB looking form diskpart) and I need to install Win10 (and 11) on the disk. I'm using .WIM file.
For partitioning I'm using text file, with all the commands for the DISKPAT,
for some reason, I have an error, see below:
No usable free extent could be found. It may be that there is insufficient
free space to create a partition at the specified size and offset. Specify
different size and offset values or don't specify either to create the
maximum sized partition. It may be that the disk is partitioned using the MBR disk
partitioning format and the disk contains either 4 primary partitions, (no
more partitions may be created), or 3 primary partitions and one extended
partition, (only logical drives may be created).
Here is the lines from the text file:
select disk 0
clean
convert gpt
create partition primary size=768
format quick fs=ntfs label="Windows RE tools"
assign letter="T"
create partition efi size=100
rem == Note: for Advanced Format Generation One drives, change to size=260.
format quick fs=fat32 label="System"
assign letter="S"
create partition msr size=206806
create partition primary
format quick fs=ntfs label="Windows"
assign letter="W"
create partition msr size=59800
create partition primary
format quick fs=ntfs label="Logical drive"
assign letter="D"
I tried making the size of the "D" drive smaller and even tried making just "100MB" partition but still having the same error.
I also tried removing the "size=59800" from the file.
I thought it (diskpart) would format remaining part of the drive:
create partition primary
format quick fs=ntfs label="logical drive"
assign letter="D"
This time I had an error :
There is not enough usable space. Diskpart Virtual disk Service error...
Could you guys help me with this?