diff --git a/windows/manage/configure-windows-10-taskbar.md b/windows/manage/configure-windows-10-taskbar.md index c042806ec6..ddbb88a737 100644 --- a/windows/manage/configure-windows-10-taskbar.md +++ b/windows/manage/configure-windows-10-taskbar.md @@ -58,6 +58,31 @@ To configure the taskbar: ``` +### Sample taskbar configuration added to Start layout XML + +```xml + + + + + + + + + + + + + + + + + + + + + +``` ##Keep default apps and add your own @@ -92,7 +117,9 @@ The `` section will append listed apps to the tas ##Remove default apps and add your own -By adding `` as a parameter to ``, you remove all default pinned apps and only the apps that you specify will be pinned to the taskbar. +By adding `PinListPlacement="Replace"` to ``, you remove all default pinned apps; only the apps that you specify will be pinned to the taskbar. + +If you only want to remove some of the default pinned apps, you would use this method to remove all default pinned apps and then include the default app that you want to keep in your list of pinned apps. ```xml @@ -120,11 +147,11 @@ By adding `` as a parameter to `` section with a **region** value. A `` section without a **region** value applies to all regions. +The following example shows you how to configure taskbars by region. When you specify one or more regions in ``, the pinned apps in that section are only pinned on computers that are configured for that region. When specifying taskbar configuration by region, the taskbar will concatenate pinlists together so long as the target computer meets the region requirements. If no region is specified for a `` node, it will apply to every region. ```xml @@ -155,14 +182,17 @@ The following example shows you how to configure taskbars by region. Each region ``` -When specifying taskbar configuration by region, the taskbar will concatenate pinlists together so long as the target computer meets the region requirements. If no region is specified for a `` node, it will apply to every region. - When the preceding example XML for region is applied, the resulting tasbkar for computers in the US or UK: +![taskbar for US and UK locale](images/taskbar-region-usuk.png) + The resulting taskbar for computers in Germany or France: +![taskbar for DE and FR locale](images/taskbar-region-defr.png) + The resulting tasbkar for computers in any other region: +![taskbar for all other regions](images/taskbar-region-other.png) **Note**   @@ -170,10 +200,34 @@ The resulting tasbkar for computers in any other region: ## Configure taskbar (by Windows 10 edition) -The following example shows you how to configure taskbars by edition, so that you can apply one configuration to Windows 10 Enterprise and a different configuration to Windows 10 Education. +The following example shows you how to configure taskbars by edition, so that you can apply one configuration to Windows 10 Enterprise and a different configuration to Windows 10 Education. ```xml -sample + + + + + + + + + + + + + + + + + + + + ``` @@ -181,43 +235,50 @@ sample ## Layout Modification Template schema definition ```xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ``` diff --git a/windows/manage/images/taskbar-region-defr.png b/windows/manage/images/taskbar-region-defr.png new file mode 100644 index 0000000000..729c597be8 Binary files /dev/null and b/windows/manage/images/taskbar-region-defr.png differ diff --git a/windows/manage/images/taskbar-region-other.png b/windows/manage/images/taskbar-region-other.png new file mode 100644 index 0000000000..b7c0818ccc Binary files /dev/null and b/windows/manage/images/taskbar-region-other.png differ diff --git a/windows/manage/images/taskbar-region-usuk.png b/windows/manage/images/taskbar-region-usuk.png new file mode 100644 index 0000000000..687af28030 Binary files /dev/null and b/windows/manage/images/taskbar-region-usuk.png differ