Merge remote-tracking branch 'refs/remotes/origin/master' into jdh1shell

This commit is contained in:
Jeanie Decker
2019-03-07 06:24:44 -08:00
423 changed files with 494 additions and 763 deletions

View File

@ -43,7 +43,6 @@ You can deploy the resulting .xml file to devices using one of the following met
- [Mobile device management (MDM)](customize-windows-10-start-screens-by-using-mobile-device-management.md)
<span id="bkmkcustomizestartscreen" />
## Customize the Start screen on your test computer
@ -93,9 +92,15 @@ When you have the Start layout that you want your users to see, use the [Export-
1. While signed in with the same account that you used to customize Start, right-click Start, and select **Windows PowerShell**.
2. At the Windows PowerShell command prompt, enter the following command:
2. On a device running Windows 10, version 1607, 1703, or 1803, at the Windows PowerShell command prompt, enter the following command:
`Export-StartLayout path <path><file name>.xml `
On a device running Windows 10, version 1809, run the **Export-StartLayout** with the switch **-UseDesktopApplicationID**. For example:
```PowerShell
Export-StartLayout -UseDesktopApplicationID -Path layout.xml
```
In the previous command, `-path` is a required parameter that specifies the path and file name for the export file. You can specify a local path or a UNC path (for example, \\\\FileServer01\\StartLayouts\\StartLayoutMarketing.xml).
@ -132,11 +137,26 @@ When you have the Start layout that you want your users to see, use the [Export-
</tbody>
</table>
3. (Optional) Edit the .xml file to add [a taskbar configuration](configure-windows-10-taskbar.md) or to [modify the exported layout](start-layout-xml-desktop.md). When you make changes to the exported layout, be aware that [the order of the elements in the .xml file are critical.](start-layout-xml-desktop.md#required-order)
3. (Optional) Edit the .xml file to add [a taskbar configuration](configure-windows-10-taskbar.md) or to [modify the exported layout](start-layout-xml-desktop.md). When you make changes to the exported layout, be aware that [the order of the elements in the .xml file is critical.](start-layout-xml-desktop.md#required-order)
>[!IMPORTANT]
>If the Start layout that you export contains tiles for desktop (Win32) apps or .url links, **Export-StartLayout** will use **DesktopApplicationLinkPath** in the resulting file. Use a text or XML editor to change **DesktopApplicationLinkPath** to **DesktopApplicationID**. See [Specify Start tiles](start-layout-xml-desktop.md#specify-start-tiles) for details on using the app ID in place of the link path.
>[!NOTE]
>All clients that the start layout applies to must have the apps and other shortcuts present on the local system in the same location as the source for the Start layout.
>
>For scripts and application tile pins to work correctly, follow these rules:
>
>* Executable files and scripts should be listed in \Program Files or wherever the installer of the app places them.
>
>* Shortcuts that will pinned to Start should be placed in \ProgramData\Microsoft\Windows\Start Menu\Programs.
>
>* If you place executable files or scripts in the \ProgramData\Microsoft\Windows\Start Menu\Programs folder, they will not pin to Start.
>
>* Start on Windows 10 does not support subfolders. We only support one folder. For example, \ProgramData\Microsoft\Windows\Start Menu\Programs\Folder. If you go any deeper than one folder, Start will compress the contents of all the subfolder to the top level.
## Configure a partial Start layout

View File

@ -5,6 +5,7 @@ author: jdeckerms
ms.author: jdecker
ms.topic: article
ms.localizationpriority: medium
ms.prod: w10
---
# Find the Application User Model ID of an installed app

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -9,6 +9,7 @@ ms.sitesec: library
author: jdeckerms
ms.localizationpriority: medium
ms.date: 09/13/2018
ms.topic: reference
---
# More kiosk methods and reference information

View File

@ -9,6 +9,7 @@ ms.sitesec: library
author: jdeckerms
ms.localizationpriority: medium
ms.date: 11/07/2018
ms.topic: article
---
# Use MDM Bridge WMI Provider to create a Windows 10 kiosk

View File

@ -7,6 +7,7 @@ ms.sitesec: library
ms.pagetype: security
ms.localizationpriority: medium
author: jdeckerms
ms.topic: article
---
# Configure kiosks and digital signs on Windows desktop editions

View File

@ -11,6 +11,7 @@ author: jdeckerms
ms.localizationpriority: medium
ms.date: 07/30/2018
ms.author: jdecker
ms.topic: article
---
# Policies enforced on kiosk devices

View File

@ -9,6 +9,7 @@ ms.sitesec: library
author: jdeckerms
ms.localizationpriority: medium
ms.date: 01/09/2019
ms.topic: article
---
# Prepare a device for kiosk configuration

View File

@ -9,6 +9,7 @@ ms.sitesec: library
author: jdeckerms
ms.localizationpriority: medium
ms.date: 10/01/2018
ms.topic: article
---
# Use Shell Launcher to create a Windows 10 kiosk

View File

@ -9,6 +9,7 @@ ms.sitesec: library
author: jdeckerms
ms.localizationpriority: medium
ms.date: 01/09/2019
ms.topic: article
---
# Set up a single-app kiosk

View File

@ -9,6 +9,7 @@ ms.sitesec: library
author: jdeckerms
ms.localizationpriority: medium
ms.date: 07/30/2018
ms.topic: article
---
# Validate kiosk configuration

View File

@ -155,6 +155,7 @@ The profile **Id** is a GUID attribute to uniquely identify the profile. You can
- For UWP apps, you need to provide the App User Model ID (AUMID). [Learn how to get the AUMID](https://go.microsoft.com/fwlink/p/?LinkId=614867), or [get the AUMID from the Start Layout XML](#startlayout).
- For desktop apps, you need to specify the full path of the executable, which can contain one or more system environment variables in the form of %variableName% (i.e. %systemroot%, %windir%).
- If an app has a dependency on another app, both must be included in the allowed apps list. For example, Internet Explorer 64-bit has a dependency on Internet Explorer 32-bit, so you must allow both "C:\Program Files\internet explorer\iexplore.exe" and “C:\Program Files (x86)\Internet Explorer\iexplore.exe”.
- To configure a single app to launch automatically when the user signs in, include `rs5:AutoLaunch="true"` after the AUMID or path. You can also include arguments to be passed to the app. For an example, see [the AllowedApps sample XML](#apps-sample).
When the mult-app kiosk configuration is applied to a device, AppLocker rules will be generated to allow the apps that are listed in the configuration. Here are the predefined assigned access AppLocker rules for **UWP apps**:

View File

@ -10,6 +10,7 @@ ms.pagetype: mobile
author: eross-msft
ms.localizationpriority: medium
ms.date: 05/02/2018
ms.topic: article
---
# Manage Wi-Fi Sense in your company

View File

@ -9,6 +9,7 @@ ms.sitesec: library
author: jdeckerms
ms.localizationpriority: medium
ms.date: 10/02/2018
ms.topic: article
---
# Set up digital signs on Windows 10

View File

@ -8,6 +8,7 @@ ms.author: kaushika
author: kaushika-msft
ms.localizationpriority: medium
ms.date: 12/03/18
ms.topic: troubleshooting
---
# Troubleshoot Start Menu errors

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---
# Deploy required UE-V features

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---
# Use UE-V with custom applications

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 05/02/2017
ms.topic: article
---
# User Experience Virtualization (UE-V) for Windows 10 overview

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---
# Prepare a UE-V Deployment

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---
# User Experience Virtualization (UE-V) Release Notes

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---
# Sync Methods for UE-V

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---
# Sync Trigger Events for UE-V

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---
# Upgrade to UE-V for Windows 10

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---
# What's New in UE-V

View File

@ -7,6 +7,7 @@ ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
ms.date: 04/19/2017
ms.topic: article
---

View File

@ -9,6 +9,7 @@ ms.author: jaimeo
author: jaimeo
ms.localizationpriority: medium
ms.date: 01/12/2018
ms.topic: reference
---
# Accessibility information for IT Professionals