我正在研究和学习 Windows 部署。到目前为止,我正在做的事情是在虚拟机内的 Windows 10 Pro 安装中编辑设置。
编辑完机器设置后,我用应答文件对机器进行系统准备,然后重新启动机器。大多数设置都已生效。
现在我想通过应答文件创建分区,并希望能够以相同的方式进行测试,对机器进行系统准备并重新启动它。
将类似这样的内容粘贴到我的答案文件后:
<settings pass="windowsPE">
<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">
<DiskConfiguration>
<Disk wcm:action="add">
<DiskID>0</DiskID>
<WillWipeDisk>true</WillWipeDisk>
<CreatePartitions>
<CreatePartition wcm:action="add">
<Order>1</Order>
<Size>25000</Size>
<Type>Primary</Type>
<Extend>false</Extend>
</CreatePartition>
<CreatePartition wcm:action="add">
<Order>3</Order>
<Size>25000</Size>
<Type>Primary</Type>
<Extend>true</Extend>
</CreatePartition>
</CreatePartitions>
<ModifyPartitions>
<ModifyPartition wcm:action="add">
<Active>true</Active>
<Extend>false</Extend>
<Format>NTFS</Format>
<Label>USERS</Label>
<Letter>U</Letter>
<Order>1</Order>
<PartitionID>1</PartitionID>
</ModifyPartition>
<ModifyPartition wcm:action="add">
<Active>false</Active>
<Format>NTFS</Format>
<Label>PROGRAMS</Label>
<Letter>P</Letter>
<Order>2</Order>
<PartitionID>2</PartitionID>
</ModifyPartition>
</ModifyPartitions>
</Disk>
</DiskConfiguration>
<WindowsDeploymentServices>
<ImageSelection>
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>2</PartitionID>
</InstallTo>
</ImageSelection>
</WindowsDeploymentServices>
</component>
</settings>
然后对计算机进行了系统准备并再次重新启动,分区尚未创建。磁盘配置与以前完全相同。
应答文件已经验证并且适用于 64 位机器。
在研究 windowsPE 设置时,我遇到了这个问题TechNet 文章其中指出:
发生下列情况之一:
- 启动 Windows 安装介质
- 从以前的 Windows 安装启动 Windows 安装程序
仅当您从 Windows PE 环境运行 Windows 安装程序时,才会应用 Windows PE 选项。从 Windows PE 或以前的 Windows 安装运行时,都会应用 Windows 安装程序选项。
这是否意味着仅当我捕获这台机器的映像,然后启动到 Windows PE 并将该映像应用到另一台计算机上时,这部分配置才会运行?
这是怎么回事?我一点儿也不懂。