Any ideas on what this error (Disk Configuration) is all about?

Sonicmojo

Member
Just built a new Win 11 PRO ISO and (for the first time) tried the "Disk Configuration" option within the UnAttended section to create the "standard" 4 partition layout that Windows 11 would create during Windows Setup from a normal ISO.

Here is what I accepted as the 4 "default" partitions via NT Lite:

2023-12-04_09-28-23.png

And here is the error I received almost immediately when testing this in a new Hyper-V VM:

2023-12-04_09-34-28.png

Now - I think I might know the answer here - and it is probably to do with the default "size" of Partition 3 that NT Lite is trying to create.

It expects to create a 100GB for partition 3 - but my entire test vm disk size is just 75GB.

Make sense? Or is this something else?

SOnic.
 
NTLite has no idea what your actual disk size will be. These are default suggested sizes.

You can click the expand arrows to automatically resize the system partition by extending to end of the disk. To use auto-size, no other partition can exist behind the system partition. This mirrors the <Extend>true</Extend> directive in the unattended file.
 

Attachments

  • Capture1.PNG
    Capture1.PNG
    28.5 KB
  • Capture2.PNG
    Capture2.PNG
    28.4 KB
Hello

What I have for Disk Configuration (EFI), if this can help you

Code:
                     <Disk>
                        <DiskID>1</DiskID>
                        <GPTDisk>true</GPTDisk>
                        <WillWipeDisk>true</WillWipeDisk>
                        <CreatePartitions>
                            <CreatePartition>
                                <Order>1</Order>
                                <Size>100</Size>
                                <Type>EFI</Type>
                            </CreatePartition>
                            <CreatePartition>
                                <Order>2</Order>
                                <Size>16</Size>
                                <Type>MSR</Type>
                            </CreatePartition>
                            <CreatePartition>
                                <Extend>true</Extend>
                                <Order>3</Order>
                                <Type>Primary</Type>
                            </CreatePartition>
                        </CreatePartitions>
                        <ModifyPartitions>
                            <ModifyPartition>
                                <Format>FAT32</Format>
                                <Order>1</Order>
                                <PartitionID>1</PartitionID>
                            </ModifyPartition>
                            <ModifyPartition>
                                <Order>2</Order>
                                <PartitionID>2</PartitionID>
                            </ModifyPartition>
                            <ModifyPartition>
                                <Format>NTFS</Format>
                                <InstallTo>true</InstallTo>
                                <Order>3</Order>
                                <PartitionID>3</PartitionID>
                            </ModifyPartition>
                        </ModifyPartitions>
                    </Disk>
 
Setting Recovery to 0 in the wizard, is a shortcut for the same EFI layout. It only takes one second.
But if you rather do it by hand, or copy lines into your preset...
 
When I did it, Nuhi had just added this part, and hadn't yet added recovery if I remember correctly, and I haven't touched it since.
Afterwards, I did it in the version before the beta (everything wasn't there)
And he still wants to add "entries" (when he has time but I give him a lot of work :D)
 
Back
Top