订单 (imageinstall-dataimage-order) Order (microsoft-windows-setup-imageinstall-dataimage-order)
Order
指定数据映像的安装顺序。Order
specifies the order in which the data image is installed.
值Values
Image_installation_orderImage_installation_order |
指定数据映像的安装顺序。Specifies the order in which a data image is installed. Image_installation_order 为一个整数。Image_installation_order is an integer. 此顺序从1开始。This sequence starts with 1. |
有效的配置阶段Valid Configuration Passes
windowsPEwindowsPE
父层次结构Parent Hierarchy
microsoft-windows-设置- | ImageInstall | DataImage | 顺序microsoft-windows-setup- | ImageInstall | DataImage | Order
适用于Applies To
有关此组件支持的 Windows 版本和体系结构的列表,请参阅 microsoft-安装-。For a list of the supported Windows editions and architectures that this component supports, see microsoft-windows-setup-.
XML 示例XML Example
以下 XML 输出显示了如何设置 ImageInstall
安装操作系统映像和数据映像的设置。The following XML output shows how to set the ImageInstall
setting to install both an operating system image and a data image.
<ImageInstall>
<OSImage>
<InstallFrom>
<Credentials>
<Domain>FabrikamDomain</Domain>
<Password>MyPassword</Password>
<Username>MyUsername</Username>
</Credentials>
<Path>\\networkshare\share\install.wim</Path>
<MetaData wcm:action="add">
<Key>/IMAGE/NAME</Key>
<Value>FabrikamCustomOSImage</Value>
</MetaData>
</InstallFrom>
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>1</PartitionID>
</InstallTo>
<WillShowUI>OnError</WillShowUI>
<InstallToAvailablePartition>false</InstallToAvailablePartition>
</OSImage>
<DataImage wcm:action="add">
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>2</PartitionID>
</InstallTo>
<InstallFrom>
<Credentials>
<Domain>FabrikamDomain</Domain>
<Password>MyPassword</Password>
<Username>MyUsername</Username>
</Credentials>
<Path>\\networkshare\share\data.wim</Path>
<MetaData wcm:action="add">
<Key>/IMAGE/NAME</Key>
<Value>FabrikamData</Value>
</MetaData>
</InstallFrom>
<Order>1</Order>
</DataImage>
</ImageInstall>