PartitionID (microsoft-windows-setup-diskconfiguration-disk-modifypartitions-modifypartition-partitionid)
PartitionID
Gibt die ID der zu ändernden Partition an. Die erste Partition auf einem Datenträger hat den Wert 1, die zweite, 2 usw.
Hinweis
BIOS-basierte Systeme: Verwenden einer erweiterten Partition
Nur primäre und logische Partitionen erhalten eine Partitions-ID. Erweiterte Partitionen werden ignoriert.
Beispiel:
Primär (1)
Erweitert
Primär (2)
Primär (3)
Es wird empfohlen, die erweiterte Partition nach allen anderen primären Partitionen zu platzieren. Andernfalls kann sich die Partitions-ID für die primären Partitionen ändern, wenn Sie logische Partitionen erstellen. Wenn Sie beispielsweise eine Partitionsstruktur mit einer erweiterten Partition in der Mitte Ihrer primären Partitionen erstellen und dann zwei logische Partitionen hinzufügen, ändert sich die Partitions-ID der letzten Partition von 3 auf 5:
Vorher:
Primär (1)
Erweitert
Primär (2)
Primär (3)
**After adding two logical partitions:**
<table>
<colgroup>
<col width="25%" />
<col width="25%" />
<col width="25%" />
<col width="25%" />
</colgroup>
<tbody>
<tr class="odd">
<td><p>Primary (1)</p></td>
<td><p>Extended</p>
<p>Logical (2)</p>
<p>Logical (3)</p></td>
<td><p>Primary (4)</p></td>
<td><p>Primary (5)</p></td>
</tr>
</tbody>
</table>
Werte
partition_identification_number |
Gibt die ID der zu ändernden Partition an. Wenn WillShowUI auf Nie festgelegt ist und eine ungültige |
Gültige Konfigurationsdurchläufe
windowsPE
Übergeordnete Hierarchie
microsoft-windows-setup- | DiskConfiguration | Disk | ModifyPartitions | ModifyPartition | PartitionID
Gilt für
Eine Liste der unterstützten Windows-Editionen und -Architekturen, die diese Komponente unterstützt, finden Sie unter microsoft-windows-setup-.
XML-Beispiel
BIOS-basiertes System mit zwei Partitionen
Die folgende XML-Ausgabe für die DiskConfiguration
-Einstellung zeigt zwei Partitionsänderungen. Im Abschnitt CreatePartition
wird zuerst die Systempartition erstellt und erhält die Partitions-ID 1. Die Windows-Partition wird als zweites erstellt und erhält die Partitions-ID 2.
Beim Ändern der Partitionen wirkt sich die erste Änderung (Ordnung 1) auf die Partition mit der ID 1 aus, was die Systempartition ist. Die zweite Änderung wirkt sich auf die Partition mit der ID 2 aus, was die Windows-Partition ist.
<DiskConfiguration>
<Disk wcm:action="add">
<DiskID>0</DiskID>
<WillWipeDisk>true</WillWipeDisk>
<CreatePartitions>
<!-- System partition -->
<CreatePartition wcm:action="add">
<Order>1</Order>
<Type>Primary</Type>
<Size>300</Size>
</CreatePartition>
<!-- Windows partition -->
<CreatePartition wcm:action="add">
<Order>2</Order>
<Type>Primary</Type>
<Extend>true</Extend>
</CreatePartition>
</CreatePartitions>
<ModifyPartitions>
<!-- System partition -->
<ModifyPartition wcm:action="add">
<Order>1</Order>
<PartitionID>1</PartitionID>
<Label>System</Label>
<Format>NTFS</Format>
<Active>true</Active>
</ModifyPartition>
<!-- Windows partition -->
<ModifyPartition wcm:action="add">
<Order>2</Order>
<PartitionID>2</PartitionID>
<Label>Windows</Label>
<Letter>C</Letter>
<Format>NTFS</Format>
</ModifyPartition>
</ModifyPartitions>
</Disk>
<WillShowUI>OnError</WillShowUI>
</DiskConfiguration>
<ImageInstall>
<OSImage>
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>2</PartitionID>
</InstallTo>
</OSImage>
</ImageInstall>
BIOS-basierte Systeme: Verwenden einer erweiterten Partition
In diesem Beispiel wird eine erweiterte Partition nach allen primären Partitionen erstellt. In diesem Fall werden die PartitionIDs in der Reihenfolge zugewiesen, in der die Partitionen erstellt werden.
<DiskConfiguration>
<Disk wcm:action="add">
<DiskID>0</DiskID>
<WillWipeDisk>true</WillWipeDisk>
<CreatePartitions>
<!-- Recovery partition -->
<CreatePartition wcm:action="add">
<Order>1</Order>
<Type>Primary</Type>
<Size>3000</Size>
</CreatePartition>
<!-- Utility2 partition -->
<CreatePartition wcm:action="add">
<Order>2</Order>
<Type>Primary</Type>
<Size>250</Size>
</CreatePartition>
<!-- System partition -->
<CreatePartition wcm:action="add">
<Order>3</Order>
<Type>Primary</Type>
<Size>100</Size>
</CreatePartition>
<!-- Extended partition -->
<CreatePartition wcm:action="add">
<Order>4</Order>
<Type>Extended</Type>
<Extend>true</Extend>
</CreatePartition>
<!-- Windows partition -->
<CreatePartition wcm:action="add">
<Order>5</Order>
<Type>Logical</Type>
<Size>15000</Size>
</CreatePartition>
<!-- Logical2 partition -->
<CreatePartition wcm:action="add">
<Order>6</Order>
<Type>Logical</Type>
<Size>100</Size>
<!-- Note: To create a logical partition that fills
the rest of the extended partition, create the
data partition with an initial size of 100 MB.
This will be changed in the ModifyPartition section. -->
</CreatePartition>
</CreatePartitions>
<ModifyPartitions>
<!-- Recovery partition -->
<ModifyPartition wcm:action="add">
<Order>1</Order>
<PartitionID>1</PartitionID>
<Label>Recovery</Label>
<Format>NTFS</Format>
<TypeID>0x27</TypeID>
</ModifyPartition>
<!-- Utility2 partition -->
<ModifyPartition wcm:action="add">
<Order>2</Order>
<PartitionID>2</PartitionID>
<Label>Utility2</Label>
<Letter>U</Letter>
<Format>NTFS</Format>
</ModifyPartition>
<!-- System partition -->
<ModifyPartition wcm:action="add">
<Order>3</Order>
<PartitionID>3</PartitionID>
<Label>System</Label>
<Format>NTFS</Format>
<Active>true</Active>
</ModifyPartition>
<!-- Extended partition:
This partition does not need receive a partition number,
nor does it need to be modified -->
<!-- Windows partition -->
<ModifyPartition wcm:action="add">
<Order>4</Order>
<PartitionID>4</PartitionID>
<Label>Windows</Label>
<Letter>C</Letter>
<Format>NTFS</Format>
</ModifyPartition>
<!-- Logical2 partition -->
<ModifyPartition wcm:action="add">
<Order>5</Order>
<PartitionID>5</PartitionID>
<Label>Logical2</Label>
<Letter>L</Letter>
<Format>NTFS</Format>
<Extend>true</Extend>
<!-- Note: When modifying a logical partition, setting
"ModifyPartition|Extend=true" sets the partition to
fill the remainder of the extended partition.
This overrides the "CreatePartition|Size" value. -->
</ModifyPartition>
</ModifyPartitions>
</Disk>
<WillShowUI>OnError</WillShowUI>
</DiskConfiguration>
<ImageInstall>
<OSImage>
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>4</PartitionID>
</InstallTo>
</OSImage>
</ImageInstall>
BIOS-basiertes System mit einer erweiterten Partition, die sich vor einer primären Partition befindet
In diesem Beispiel ist die erweiterte Partition zuerst, vor den primären Partitionen vorhanden. Beachten Sie, dass die logischen Partitionen, auch wenn zuletzt erstellt werden, die ersten Partitionsnummern haben.
<DiskConfiguration>
<Disk wcm:action="add">
<DiskID>0</DiskID>
<WillWipeDisk>true</WillWipeDisk>
<CreatePartitions>
<!-- Extended partition -->
<CreatePartition wcm:action="add">
<Order>1</Order>
<Type>Extended</Type>
<Size>20000</Size>
</CreatePartition>
<!-- Recovery partition -->
<CreatePartition wcm:action="add">
<Order>2</Order>
<Type>Primary</Type>
<Size>3000</Size>
</CreatePartition>
<!-- System partition -->
<CreatePartition wcm:action="add">
<Order>4</Order>
<Type>Primary</Type>
<Size>100</Size>
</CreatePartition>
<!-- Utility2 partition -->
<CreatePartition wcm:action="add">
<Order>3</Order>
<Type>Primary</Type>
<Extend>true</Extend>
</CreatePartition>
<!-- Windows partition -->
<CreatePartition wcm:action="add">
<Order>5</Order>
<Type>Logical</Type>
<Size>15000</Size>
</CreatePartition>
<!-- Logical2 partition -->
<CreatePartition wcm:action="add">
<Order>6</Order>
<Type>Logical</Type>
<Size>4980</Size>
</CreatePartition>
</CreatePartitions>
<ModifyPartitions>
<!-- Extended partition:
This partition does not need receive a partition number,
nor does it need to be modified -->
<!-- Windows partition -->
<ModifyPartition wcm:action="add">
<Order>1</Order>
<PartitionID>1</PartitionID>
<Label>Windows</Label>
<Letter>C</Letter>
<Format>NTFS</Format>
</ModifyPartition>
<!-- Logical2 partition -->
<ModifyPartition wcm:action="add">
<Order>2</Order>
<PartitionID>2</PartitionID>
<Label>Logical2</Label>
<Letter>L</Letter>
<Format>NTFS</Format>
</ModifyPartition>
<!-- Recovery partition -->
<ModifyPartition wcm:action="add">
<Order>3</Order>
<PartitionID>3</PartitionID>
<Label>Recovery</Label>
<Format>NTFS</Format>
<TypeID>0x27</TypeID>
</ModifyPartition>
<!-- System partition -->
<ModifyPartition wcm:action="add">
<Order>4</Order>
<PartitionID>4</PartitionID>
<Label>System</Label>
<Format>NTFS</Format>
<Active>true</Active>
</ModifyPartition>
<!-- Utility2 partition -->
<ModifyPartition wcm:action="add">
<Order>5</Order>
<PartitionID>5</PartitionID>
<Label>Utility2</Label>
<Letter>U</Letter>
<Format>NTFS</Format>
</ModifyPartition>
</ModifyPartitions>
</Disk>
<WillShowUI>OnError</WillShowUI>
</DiskConfiguration>
<ImageInstall>
<OSImage>
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>1</PartitionID>
</InstallTo>
</OSImage>
</ImageInstall>
Vollständige XML-Beispiele und empfohlene Konfiguration der Partitionen finden Sie unter So konfigurieren Sie UEFI/GPT-basierte Festplattenpartitionen oder So konfigurieren Sie BIOS/MBR-basierte Festplattenpartitionen.