Label (Standard 8 Module Reference)

7/8/2014

Review the applicable Embedded Core modules and any examples for the Label setting in Windows Embedded 8 Standard (Standard 8).

This setting contains a string that specifies the name to give a partition.

Do not create an empty value for this setting.

Note

To name a partition, you must also specify a Format for the partition.

Modules

The following table shows the modules that you can apply this setting to. In Image Configuration Editor (ICE), you can follow the corresponding path to set this setting for a module.

Module

Path

Setup

Products/Embedded Core/Setup/DiskConfiguration/Disk/ModifyPartitions/ModifyPartition/Label

XML Example

The following XML example for the DiskConfiguration setting shows two partition modifications. The first modification labels partition 1 as "System". The second modification labels partition 2 as "Windows Embedded".

<ModifyPartitions>

      <!-- System partition -->
      <ModifyPartition wcm:action="add">
        <Order>1</Order> 

        <PartitionID>1</PartitionID> 
        <Label>System</Label> 
        <Format>NTFS</Format> 
        <Active>true</Active> 
      </ModifyPartition>

      <!—Windows Embedded partition -->
      <ModifyPartition wcm:action="add">
        <Order>2</Order> 
        <PartitionID>2</PartitionID> 
        <Label>Windows Embedded</Label> 
        <Format>NTFS</Format> 
      </ModifyPartition>
</ModifyPartitions>

For a more complete example of configuring a label, see Extending a Partition XML Example.

For full XML examples and recommended partition configurations, see How to Configure UEFI/GPT-Based Hard Disk Partitions, or How to Configure BIOS/MBR-Based Hard Disk Partitions.

See Also

Concepts

Embedded Core Settings