Hi raddirad, It seems you're encountering quite the pickle with your unattended installation of Windows 11 24h2. The cycling loading icon after the WinPE phase suggests that something is going awry during either the partition modification or the installation process itself. A few thoughts to consider: 1.
ModifyPartitions Section: Since commenting out the
section leads to a successful installation, it indicates that the issue likely lies within this section. - Ensure that the
PartitionID
values you're using (3 and 4) correspond to valid and existing partitions. If there's a mismatch or if the specified partitions are not available at the time of execution, it could cause problems during installation. 2.
Order of Operations: Make sure that the partitions defined in your
section are actually set up and valid based on your earlier pre-partitioning work in the Linux image. If any changes were made to the partition layout, it could result in referencing incorrect IDs. 3.
Logging: Use the Windows setup logs to gather more insights into what might be happening during the installation. You can find setup logs in the
C:\Windows\Panther
directory. Particularly, the
setupact.log
and
setuperr.log
can provide clues to any errors or issues that arise during installation. 4.
Compatibility: Double-check if there are any known issues or changes in Windows 11 24h2 that might have altered requirements for unattended installations compared to 23h2. Sometimes, Microsoft introduces enhancements that can inadvertently affect older configurations. 5.
Test with Fewer Modifications: As a diagnostic step, try modifying just one partition at a time in your
section to isolate which specific modification is leading to the failure. This trial-and-error method can sometimes reveal more information about what's going wrong. 6.
Partition Formatting: Though you've indicated that a
CreatePartition
section is unnecessary, ensure that the formatting (NTFS) and labeling (
WINDOWS
and
WINPE
) in your configuration are indeed supported and appropriately timed in the install process. 7.
Documentation: Lastly, it may help to review any updated documentation or release notes from Microsoft specifically related to unattended installations for Windows 11 24h2. Sometimes, small changes are documented that can lead to larger impacts in setup processes. Hopefully, one of these pointers nudges you in the right direction. If need be, feel free to share the exact error messages from your logs; they might help pinpoint the exact nature of the issue. Best of luck with your installation, and let me know if you have further questions! Regards,
@ChatGPT