mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-06-18 11:53:37 +00:00
Merged PR 8503: Add guest access for HoloLens kiosk
This commit is contained in:
@ -10,7 +10,7 @@ author: jdeckerms
|
|||||||
ms.author: jdecker
|
ms.author: jdecker
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.date: 05/21/2018
|
ms.date: 05/22/2018
|
||||||
---
|
---
|
||||||
|
|
||||||
# Change history for Microsoft HoloLens documentation
|
# Change history for Microsoft HoloLens documentation
|
||||||
@ -24,6 +24,7 @@ New or changed topic | Description
|
|||||||
[Preview new mixed reality apps for HoloLens](hololens-public-preview-apps.md) | New
|
[Preview new mixed reality apps for HoloLens](hololens-public-preview-apps.md) | New
|
||||||
[Microsoft Remote Assist app](hololens-microsoft-remote-assist-app.md) | New
|
[Microsoft Remote Assist app](hololens-microsoft-remote-assist-app.md) | New
|
||||||
[Microsoft Layout app](hololens-microsoft-layout-app.md) | New
|
[Microsoft Layout app](hololens-microsoft-layout-app.md) | New
|
||||||
|
[Set up HoloLens in kiosk mode](hololens-kiosk.md) | Added instructions for setting up a guest account for kiosk mode.
|
||||||
|
|
||||||
## Windows 10 Holographic for Business, version 1803
|
## Windows 10 Holographic for Business, version 1803
|
||||||
|
|
||||||
|
@ -9,14 +9,14 @@ author: jdeckerms
|
|||||||
ms.author: jdecker
|
ms.author: jdecker
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.date: 04/30/2018
|
ms.date: 05/22/2018
|
||||||
---
|
---
|
||||||
|
|
||||||
# Set up HoloLens in kiosk mode
|
# Set up HoloLens in kiosk mode
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
In Windows 10, version 1803, you can configure your HoloLens devices to run as multi-app or single-app kiosks.
|
In Windows 10, version 1803, you can configure your HoloLens devices to run as multi-app or single-app kiosks. You can also configure guest access for a HoloLens kiosk device by [designating a SpecialGroup account in your XML file.](#guest)
|
||||||
|
|
||||||
When HoloLens is configured as a multi-app kiosk, only the allowed apps are available to the user. The benefit of a multi-app kiosk, or fixed-purpose device, is to provide an easy-to-understand experience for individuals by putting in front of them only the things they need to use, and removing from their view the things they don’t need to access.
|
When HoloLens is configured as a multi-app kiosk, only the allowed apps are available to the user. The benefit of a multi-app kiosk, or fixed-purpose device, is to provide an easy-to-understand experience for individuals by putting in front of them only the things they need to use, and removing from their view the things they don’t need to access.
|
||||||
|
|
||||||
@ -116,6 +116,20 @@ Follow [the instructions for creating a kiosk configuration XML file for desktop
|
|||||||
- Do not include Classic Windows applications (Win32) since they aren't supported on HoloLens.
|
- Do not include Classic Windows applications (Win32) since they aren't supported on HoloLens.
|
||||||
- Use the [placeholder Start XML](#start-kiosk) for HoloLens.
|
- Use the [placeholder Start XML](#start-kiosk) for HoloLens.
|
||||||
|
|
||||||
|
<span id="guest" />
|
||||||
|
#### Add guest access to the kiosk configuration (optional)
|
||||||
|
|
||||||
|
In the [Configs section of the XML file](https://docs.microsoft.com/windows/configuration/lock-down-windows-10-to-specific-apps#configs), you can configure a special group account named **Visitor** to allow guests to use the kiosk. Use the following snippet in your kiosk configuration XML to enable **Visitor**:
|
||||||
|
|
||||||
|
```xml
|
||||||
|
<Configs>
|
||||||
|
<Config>
|
||||||
|
<SpecialGroup Name="Visitor" />
|
||||||
|
<DefaultProfile Id="enter a profile ID"/>
|
||||||
|
</Config>
|
||||||
|
</Configs>
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
<span id="add-xml"/>
|
<span id="add-xml"/>
|
||||||
### Add the kiosk configuration XML file to a provisioning package
|
### Add the kiosk configuration XML file to a provisioning package
|
||||||
|
Reference in New Issue
Block a user