ExtendOSPartition

StrangeTech 26 Reputation points
2022-08-16T23:22:44.607+00:00

With the introduction of the new partition structure( Windows 10 21H2, Windows 11) I am having problems with the ExtendOSPartition command in the unattended file. We have previously always built the image on smaller drives, resealed the image with sysprep and cloned to larger drives of varied sizes.
With the Recovery partition being installed at the end of the disk the OS partition is restricted and does not auto extend.

We are processing around 100 Hard drives a month so cloning has been the most efficient option, but I am open to alternatives if available.

<settings pass="specialize">  
        <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
            <ExtendOSPartition>  
                <Extend>true</Extend>  
            </ExtendOSPartition>  
        </component>  
    </settings>  

If it is not possible to automatically extend the OS partition with the recovery partition there, is there a script for the creation of a recovery partition, post install.

Tim

Windows 10 Setup
Windows 10 Setup
Windows 10: A Microsoft operating system that runs on personal computers and tablets.Setup: The procedures involved in preparing a software program or application to operate within a computer or mobile device.
1,903 questions
Windows 11
Windows 11
A Microsoft operating system designed for productivity, creativity, and ease of use.
8,158 questions
0 comments No comments
{count} votes

Accepted answer
  1. Limitless Technology 39,351 Reputation points
    2022-08-17T14:37:48.817+00:00

    This is not unique to Windows 11.

    It is related to the Microsoft disk management feature.

    Extend volume is available when there is unallocated space immediately to the right of C:

    When there is not free space extend volume appears grey in disk management.

    The extend volume cannot be performed when grey in any Windows edition / version (11, 10, 8.1, 7, etc.)

    ""You can use Disk Management to add space to an existing volume, extending it into empty space on the drive, but only if the empty space doesn't have a volume on it (it's unallocated) and comes immediately after the volume you want to extend, with no other volumes in-between, as shown in the following image. The volume to extend also must be formatted with the NTFS or ReFS file systems.""

    https://learn.microsoft.com/en-us/windows-server/storage/disk-management/extend-a-basic-volume#:~:text=To%20extend%20a%20volume%20by%20using%20Disk%20Management,-Here's%20how%20to&text=After%20Computer%20Management%20opens%2C%20go,and%20then%20select%20Extend%20Volume.

    Since the recovery partition is right after C: and the allocated space if after it, the only option is to use a 3rd party Partition manager or Partition assistance to change the order of the partitions. Some of these apps, also provide a command line that can be invoked during Unattended XML.

    --------------------------------------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept as answer--

    1 person found this answer helpful.

2 additional answers

Sort by: Most helpful
  1. S.Sengupta 15,111 Reputation points MVP
    2022-08-17T02:04:50.433+00:00
    0 comments No comments

  2. StrangeTech 26 Reputation points
    2022-08-17T22:49:24.663+00:00

    Thanks

    The best solution I have found is deleting the Recovery partition in Diskpart, Expanding the OS partition, then rebuilding the recovery partition
    This requires running this script from a Windows PE enviroment.
    oem-deployment-of-windows-desktop-editions-sample-scripts

    Its's not a perfect solution, but it'll do.

    0 comments No comments