PartitionID (microsoft-windows-setup-imageinstall-osimage-installto-partitionid)
PartitionID
は、Windows をインストールするパーティションを指定します。
値
Partition_identification_number |
Windows をインストールするパーティションを指定します。 Partition_identification_number は整数です。 この値は、1 から始まる相対インデックスです。 パーティション番号の詳細については、PartitionID に関するトピックを参照してください。 |
有効な構成パス
windowsPE
[親階層]
microsoft-windows-setup- | ImageInstall | OSImage | InstallTo | PartitionID
適用対象
このコンポーネントがサポートしている Windows のエディションとアーキテクチャの一覧については、microsoft-windows-setup- を参照してください。
XML の例
次の XML 出力は、オペレーティング システム イメージとデータ イメージの両方をインストールする ImageInstall
設定を設定する方法を示しています。
<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>