Order specifies a unique id for a set of regions. In the specified set of regions, Windows displays a customized set of apps that appear on the Start and Lock screens.

Each regional override can be used for multiple regions. For example, you could add a set of apps that are designed for South American business travel that only appear for your users in South America.

Your user’s region can be selected by the user during OOBE, or can be specified with Microsoft-Windows-International-Core\UserLocale.

If the selected region matches a region in Windows-Shell-Setup\StartMenu\RegionalOverrides\RegionalOverride\Regions\Region, then Windows displays the set of apps from that regional override. The set of apps is specified by Microsoft-Windows-Shell-Setup\StartTiles\RegionalOverrides\RegionalOverride: WideTiles, SquareTiles, and LockScreen.

If the selected region doesn’t match any of these regions, then Windows displays the set of apps from Microsoft-Windows-Shell-Setup\StartTiles: WideTiles, SquareTiles, and LockScreen.

Values

Order

Specifies a unique ID for the regional override.

This value must be a two-digit integer between 01 and 19: 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17, 18, or 19.

Valid Configuration Passes

specialize

auditUser

oobeSystem

Parent Hierarchy

XML Example

The following XML output shows how to configure two set of apps, one applies to only in France and Italy, another applies only to Germany.

  Copy Code
<RegionalOverrides>
  <RegionalOverride>
	<Order>1</Order>
	<Regions>
	<Region>
		<RegionID>IT</RegionID>
	</Region>
	<Region>
		<RegionID>FR</RegionID>
	</Region>
	 </Regions>
	<!-- Square tiles, Wide Tiles, and LockScreen apps are specified here -->
  </RegionalOverride>
  <RegionalOverride>
	<Order>2</Order>
	<Regions>
	<Region>
		<RegionID>DE</RegionID>
	</Region>
	 </Regions>
	<!-- Square tiles, Wide Tiles, and LockScreen apps are specified here -->
  </RegionalOverride>
<Regions>

See Also