0

我有一台 Windows 10 Home 机器(VirtualBox)。它的 EFI 机器,磁盘是 GPT 和动态的。请参考下图

在此处输入图像描述

下图显示了现有分区 在此处输入图像描述

我正在尝试使用 WDS 在其上安装 Windows 10 Pro。我不想擦除“磁盘 0”,但我只想将“分区 4”格式化为包含操作系统的 NTFS。

以下是我的“unattend.xml”的一部分

<component name="Microsoft-Windows-Setup" 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">
            <WindowsDeploymentServices>
                <Login>
                    <Credentials>
                        <Domain>WIN-FNN9C1R1070</Domain>
                        <Password>somepassword</Password>
                        <Username>someusername</Username>
                    </Credentials>
                </Login>
                <ImageSelection>
                    <InstallTo>
                        <DiskID>0</DiskID>
                        <PartitionID>4</PartitionID>
                    </InstallTo>
                    <InstallImage>
                        <Filename>install_img1.wim</Filename>
                        <ImageGroup>InstallImages</ImageGroup>
                        <ImageName>Windows 10 Pro</ImageName>
                    </InstallImage>
                    <WillShowUI>OnError</WillShowUI>
                </ImageSelection>
            </WindowsDeploymentServices>
            <DiskConfiguration>
                <Disk wcm:action="add">
                    <DiskID>0</DiskID>
                    <WillWipeDisk>false</WillWipeDisk>
                    <ModifyPartitions>
                        <ModifyPartition wcm:action="add">
                            <Format>NTFS</Format>
                            <Label>C</Label>
                            <Letter>C</Letter>
                            <Order>1</Order>
                            <PartitionID>4</PartitionID>
                        </ModifyPartition>
                    </ModifyPartitions>
                </Disk>
            </DiskConfiguration>
        </component>

我收到以下错误 在此处输入图像描述

笔记::

  • “磁盘 0”是 GPT,动态 = 错误。
  • “磁盘 0”只是 GPT 而不是动态 = 无错误,安装成功。

我试图找到以下问题的答案

  1. 为什么我收到此错误?
  2. 我的“unattend.xml”有什么问题?
  3. 我需要在“unattend.xml”中进行哪些更改才能使其正常工作?
  4. 为什么只有当磁盘既是 GPT 又是动态而不是磁盘只是 GPT 时才会出现错误?
4

0 回答 0