Start Menu



  • Windows 10 Tutorial
  • Windows 10 Useful Resources
  • Selected Reading

Powered by Gallery 3.0.4 (Ricochet); Classic Shell © 2010-2016, Ivo Beltchev. All right reserved. The Start menu is a graphical user interface element used in Microsoft Windows since Windows 95 and in some other operating systems. It provides a central launching point for computer programs and performing other tasks. It has different names in different operating systems and window managers, such as Kickoff Application Launcher in KDE, Dash in GNOME and Unity, and Start screen in Windows.


The Start Menu is the main point of access to your applications. There are two main ways to open it −

  1. This is our own one-of-a-kind feature. Start Menu 10 replaces the yellow folder icons with application icons. Clicking on the folder launches the application. To access a submenu, hover the cursor over a folder for a few seconds. For the first launch, the application launched is determined automatically.
  2. On Windows 10, the Start menu is an essential component, as it's the experience you use every day to find apps, settings, and files.

Step 1 − Use your mouse to click Windows icon in the lower-left corner of the taskbar.

Step 2 − Press the Windows key on your keyboard.

The Windows 10 Start Menu features two panes.

The left pane resembles the traditional Start Menu from Windows 7 and earlier, while the right pane features live tiles that were used in Windows 8.

Left Pane

Among the things you can do in the left pane are −

  • Click the username at the top of the menu to change account settings or log in with another user.

  • Access the applications you use more frequently.

  • A small arrow next to an application will open a sub-menu with a list of recent documents opened with that application.

  • Open the “File Explorer” to navigate your folders and files.

  • Change the settings of your computer like your Internet connection or changing your background.

  • See different options to shut down your computer.

  • See a list of all the applications installed in your computer.

Search Box

The “Search box” on the Taskbar will allow you to search within your documents and files or on the Web for anything you write. The initial results will appear within the Start Menu itself.

StartStart Menu

The results will be grouped according to the closest match (or matches) labeled “Best match” at the top of the list.

The remaining results will be grouped according to what they are or their location −

  • Web results
  • Documents or folders
  • Apps
  • System settings

The icons on the left side of the menu do the following −

The Gear icon will allow you to configure the settings of your Search.

Start Menu

This icon will let you send Feedback to Microsoft on what you like or dislike about Windows.

The Cortana icon will activate Windows’ new personal assistant.

Clicking “My stuff” or “Web” at the bottom will expand the Start Menu and limit your results to the location you choose, as well as streamlining the search.

Right Pane

The right pane features a varied array of tiles, similar to the ones that were seen on the Start Screen of Windows 8.

These tiles can be moved and dragged to different places by holding the mouse button.

You can also configure them by right-clicking on them to see options to resize them or “unpin” them (remove them) from the Menu.

The whole Start Menu can also be resized by dragging the borders with the mouse to the desired size.

-->

OEMs can customize the Start layout by adding an OEM group of tiles to the end of the Start layout. The layout is customized by creating a LayoutModification.xml file. After following the instructions below to customize the Start layout with the LayoutModification.xml file, use Windows Configuration Designer to add the file to the device image. See Add the LayoutModification.xml file to the device for instructions.

The following image shows the default Start layout for Home and Pro SKUs (non-domain joined) with the placement of an example OEM group of tiles. (The down arrow tiles represent apps specified by Microsoft that are dynamically delivered – see below for more details.)

LayoutModification.xml

The LayoutModification.xml file specifies the OEM group, group name, the tiles in the group, what app or website each tile launches, and the size and location of these tiles.

Sample LayoutModification.xml file

The sample LayoutModification.xml file below demonstrates how to pin three medium tiles to the OEM group that appear in a single row and that launch UWP apps. (Note: The AppUserModelID for the apps in this sample are not valid – see below for more details on how to find this ID.)

This XML would create an OEM group that looks like this:

More info:

  • To determine the overall look of the Start layout, the default layout is applied based on SKU and region, and then the LayoutModification.xml or Unattend.xml file is processed.
  • Comments are not supported in the LayoutModification.xml file.
  • For an inclusive list of settings that can be configured in LayoutModification.xml (including those NOT supported for OEM scenarios), other XML examples, and instructions on adding the XML file to the device, see Start layout XML for desktop editions of Windows 10 (Reference).
  • We recommend placing a backup copy of the file at C:RecoveryAutoApplyLayoutModification.xml so it will be restored during a push-button reset.

Customizing the OEM group

The OEM group is three medium tiles wide and up to three medium tiles tall, but can include any supported combination of small, medium, wide, and large tile sizes to fill this space. One full row of medium tiles is visible by default, and the entire tile grid scrolls vertically to reveal more tiles if more than one row of medium tiles are pinned to the OEM group.

Beginning with Windows 10, version 1903:

  • The two column layout is deprecated (medium layout).
  • The option of four medium tiles (8-cell-wide) per row is deprecated.
  • The two OEM groups are consolidated into a single group.

Note: These changes apply to new (or clean install) devices only. Devices that upgrade to Windows 10, version 1903, will not experience a change to their existing Start layout. New accounts created on a device that has been upgraded to 1903 will see the new Start layout, as well as devices that do a push button reset after the upgrade.

Tile sizes and position

start:Tile supports four different values for the Size attribute:

  • Small tile (1x1)
  • Medium tile (2x2)
  • Wide tile (4x2)
  • Large tile (4x4)

To position a start:Tile in the group, set the Row and Column attributes values. These attributes determine the position of the upper, left edge of the tile within the group. The 0,0 position is the first row, first column.

For example, the image below shows a sample group with small, medium, and wide tiles and their positioning.

We recommend that your tile layouts don't create the appearance of gaps in the layout.

Group name

Starting with Windows 10, version 1809, the OEM group must include a group name that describes either the OEM name or hardware brand. Exception: the group name can be ommitted if there's only a single row of tiles in the group, and the first tile in the row prominently contains the OEM or brand name or logo.

To set a group name, specify the Name attribute within the AppendGroup element, like this: <AppendGroup Name='OEM Group Name'>

App tiles and web link tiles

Tiles can be configured to launch:

  • A Universal Windows or Windows 8/8.1 app (using the start:Tile element)
  • A Windows (Win32) desktop application (using the start:DesktopApplicationTile element)
  • A web link that opens in Microsoft Edge (using the start:SecondaryTile element) or the default browser (using the start:DesktopApplicationTile element)

Note

Each tile pinned to the Start layout must launch a single app or website. It must not launch a group of apps or be a folder.

App tiles

Use the start:Tile element to pin a Universal Windows app or a Windows 8/8.1 app to the Start layout. To specify the app to launch, set the AppUserModelID attribute of start:Tile to the application user model ID (AUMID) associated with the app. The AUMID is case-sensitive.

Tip

To find the AUMID for an installed app, see Find the Application User Model ID of an installed app.

This example shows how to pin the Windows Calculator app:

Use the start:DesktopApplicationTile element to pin a Windows (Win32) desktop application to the Start layout. There are two ways to specify which application to launch for these tiles:

  1. Set the DesktopApplicationLinkPath to a path to a shortcut link (.lnk file) to a Windows (Win32) desktop application. The following shows how to pin the Command Prompt desktop application using the .lnk method:

  2. Set the DesktopApplicationID to the application's ID, if it's known. If the application doesn't have one, use the shortcut link option above. The following example shows how to pin the File Explorer Windows desktop application by specifying the desktop application ID:

Important

In Windows 10, version 1803, all apps must either be pinned to the Start layout, and/or pre-installed using the new region parameter in DISM, otherwise they will be removed on any system that uses that layout. See Preinstall apps using DISM for guidance on using the new parameter.

Web link tiles

Web link tiles can open in Microsoft Edge by using a secondary tile, or the default browser by using a .url file.

To create a web link tile that will open in Microsoft Edge, add a SecondaryTile element to the layout and specify Edge in the AppUserModelID attribute.

Start

To create a web link tile that will open in the default browser, create a .url file:

  1. Right click on Desktop > New > Shortcut

  2. Type a URL such as https://www.fabrikam.com

  3. Click Next

  4. Type a name for the shortcut such as Fabrikam and click Finish. The .url file is saved to your desktop.

  5. Add the .url file to the image in the %ALLUSERSPROFILE%MicrosoftWindowsStart MenuPrograms folder, and then add a DesktopApplicationTile element to the layout:

Configuring Office tiles

Depending on your device and Windows version, you might install different versions of Office.

Current: Office Click-to-Run (C2R)

Beginning with Windows 10, version 1903, install the C2R version of Office using the Office pre-installation kit (OPK). When this version of Office is installed, don't add any Office-related tags to LayoutModification.xml. Windows will automatically detect the Office installation and add the appropriate tiles to Start, in an expandable folder. When a user clicks the expandable folder, the folder expands to show installed Office tiles.

Deprecated: Office Click-to-Run (C2R) for devices with downgrade facilitiation

For Windows 10 Pro standard versions (1809 and 1803 only, does not apply to 1903 or later) that include downgrade facilitation to Windows 7, add the following two tags to LayoutModification.xml:

Deprecated: Office 365 Group (Centennial)

For Windows 10, version 1903, this setting is deprecated and shouldn't be used. If a PC is upgraded from Windows 10, version 1809, to Windows 10, version 1903, and a new user account is created, Office tiles will be displayed in the “Productivity” group instead of an 'Office 365' group.

For Windows 10, version 1809, Office Desktop Bridge Subscription is required on all devices where the screen is 10.1 inches or larger and does not include downgrade facilitation to Windows 7. Use the matching Office Preinstallation Kit (OPK) 18.10.

In Windows 10, version 1803, Office Desktop Bridge Subscription is recommended on all devices where the screen is 10.1 inches or larger. Use the matching OPK 16.5.

For these versions only, add the following two tags to LayoutModification.xml:

Deprecated: Office Desktop (Centennial)

In Windows 10, version 1803 only (do not use with 1809 or 1903), this option may be used for devices shipping with Activation for Office (AFO) Perpetual. For this scenario only, add the following two tags to LayoutModification.xml:

Deprecated: Office Mobile

In Windows 10, version 1903, do not install this on any device, regardless of screen size. Install the C2R version of Office instead.

In Windows 10, version 1803 or version 1809, required installation of Office Mobile for devices where the screen is less than or equal to 10.1 inches with no bundles/packaged keyboard. For this scenario only: add the following tag to LayoutModification.xml:

Customize the Start layouts for different regions

Use the Region attribute of the RequiredStartGroups tag in the LayoutModification.xml file to specify different Start layouts per region. To learn more, see RequiredStartGroups tag in the Start Layout XML Reference.

Alternatively, use multivariant capabilities in Windows provisioning to specify different Start layouts per region. To learn more, see Use Windows Provisioning multivariant support in the Start Layout XML Reference.

Dynamically delivered apps

Some apps in the Start layout are downloaded dynamically after the Out of Box Experience (OOBE) completes. If the device is on a metered network, or without network connectivity, app downloads are paused, and the user will see down arrows instead of the app name on the app tiles, as in the following image. The downloads start or resume after the network connects.

Beginning with Windows 10, version 1903, dynamically delivered apps will only exist on Home and Pro (non-domain joined) SKUs. Pro SKU variants (domain-joined), Enterprise, and EDU SKUs will not receive programmable tiles.

OEMs can also optionally specify whether dynamically delivered apps appear on devices used by Commercial customers on the Pro SKU. The following modification may only be used in the LayoutModification.xml file for commercial devices:

If this property is set, devices that ship with the Pro SKU will be treated as Commercial, meaning they will receive the Enterprise Start layout with fewer tiles and no dynamically delivered apps even if the end user doesn't join a domain during OOBE. This property may not be used for Home SKU, nor may it be used for Pro SKU devices that may be used by consumer customers.

Additionally, dynamically delivered apps will begin to transition to a 'click-to-install' delivery mechanism. After OOBE, app and game programmable tiles will appear, but the app or game will not yet be downloaded to the device. When a customer launches a 'click-to-install' app or game in Start, that specific app or game will download to the device without redirecting the user to the Store (assuming the user is connected to the internet). Not all apps and games will transition to 'click-to-install' immediately.

Note: Due to government regulations, beginning with Windows 10, version 1809, dynamically delivered apps and games have been disabled for devices that select the China region during OOBE.

First run tasks

First Run Tasks are background tasks that are active when the user first signs into Windows. First Run Tasks are not available in LayoutModification.xml. However, you can still use them by including an Unattend.xml file with StartTiles tags using the same AppID as in LayoutModification.xml.

Start Menu

If the AppendGroup tag is present in LayoutModification.xml, it will override Unattend.xml for all Start pinning. However, if an Unattend.xml StartTiles tag exists for the same AppID as in LayoutModification.xml, the FirstRunTask from Unattend.xml will be respected.

Start Menu Troubleshooter

For example, include a LayoutModfication.xml file specifying an app like this:

Where Is The Start Menu Windows 10

Also include an Unattend.xml file specifying the same AppID like this:

Start Menu Not Working Windows 10

Related topics