Merge branch 'master' of https://github.com/MicrosoftDocs/windows-docs-pr into WUFB1
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 258 KiB |
@ -9,7 +9,7 @@ ms.reviewer: ramakoni, DEV_Triage
|
|||||||
ms.prod: internet-explorer
|
ms.prod: internet-explorer
|
||||||
ms.technology:
|
ms.technology:
|
||||||
ms.topic: kb-support
|
ms.topic: kb-support
|
||||||
ms.custom: CI=111020
|
ms.custom: CI=111026
|
||||||
ms.localizationpriority: Normal
|
ms.localizationpriority: Normal
|
||||||
# localization_priority: medium
|
# localization_priority: medium
|
||||||
# ms.translationtype: MT
|
# ms.translationtype: MT
|
||||||
@ -71,10 +71,18 @@ The batch file offers the following options:
|
|||||||
|
|
||||||
**Contents of the batch file**
|
**Contents of the batch file**
|
||||||
|
|
||||||
```console
|
```dos
|
||||||
@echo off
|
@echo off
|
||||||
:: AxelR Test Batch
|
# This sample script is not supported under any Microsoft standard support program or service.
|
||||||
:: tested on Windows 8 + IE10, Windows7 + IE9
|
# The sample script is provided AS IS without warranty of any kind. Microsoft further disclaims
|
||||||
|
# all implied warranties including, without limitation, any implied warranties of merchantability
|
||||||
|
# or of fitness for a particular purpose. The entire risk arising out of the use or performance of
|
||||||
|
# the sample scripts and documentation remains with you. In no event shall Microsoft, its authors,
|
||||||
|
# or anyone else involved in the creation, production, or delivery of the scripts be liable for any
|
||||||
|
# damages whatsoever (including, without limitation, damages for loss of business profits, business
|
||||||
|
# interruption, loss of business information, or other pecuniary loss) arising out of the use of or
|
||||||
|
# inability to use the sample scripts or documentation, even if Microsoft has been advised of the
|
||||||
|
# possibility of such damages
|
||||||
|
|
||||||
:home
|
:home
|
||||||
cls
|
cls
|
||||||
@ -83,55 +91,33 @@ echo Delete IE History
|
|||||||
echo Please select the task you wish to run.
|
echo Please select the task you wish to run.
|
||||||
echo Pick one:
|
echo Pick one:
|
||||||
echo.
|
echo.
|
||||||
echo 1. Delete Non-trusted web History(low level hidden clean up)
|
echo 1. Delete History
|
||||||
echo 2. Delete History
|
echo 2. Delete Cookies
|
||||||
echo 3. Delete Cookies
|
echo 3. Delete Temporary Internet Files
|
||||||
echo 4. Delete Temporary Internet Files
|
echo 4. Delete Form Data
|
||||||
echo 5. Delete Form Data
|
echo 5. Delete Stored Passwords
|
||||||
echo 6. Delete Stored Passwords
|
echo 6. Delete All
|
||||||
echo 7. Delete All
|
echo 7. Delete All "Also delete files and settings stored by add-ons"
|
||||||
echo 8. Delete All "Also delete files and settings stored by add-ons"
|
echo 8. Delete IE10 and 9 Temporary Internet Files
|
||||||
echo 9. Delete IE10 and 9 Temporary Internet Files
|
echo 9. Reset IE Settings
|
||||||
echo 10. Reset IE Settings
|
echo 00. EXIT
|
||||||
echo 77. EXIT
|
|
||||||
:choice
|
:choice
|
||||||
Echo Hit a number [1-10] and press enter.
|
Echo Hit a number [1-10] and press enter.
|
||||||
set /P CH=[1-10]
|
set /P CH=[1-10]
|
||||||
|
|
||||||
if "%CH%"=="1" set x=del /s /q C:\Users\%username%\AppData\Local\Microsoft\Windows\History\low\* /ah
|
if "%CH%"=="1" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1
|
||||||
if "%CH%"=="2" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1
|
if "%CH%"=="2" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2
|
||||||
if "%CH%"=="3" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2
|
if "%CH%"=="3" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8
|
||||||
if "%CH%"=="4" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8
|
if "%CH%"=="4" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16
|
||||||
if "%CH%"=="5" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16
|
if "%CH%"=="5" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32
|
||||||
if "%CH%"=="6" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32
|
if "%CH%"=="6" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255
|
||||||
if "%CH%"=="7" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255
|
if "%CH%"=="7" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351
|
||||||
if "%CH%"=="8" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351
|
if "%CH%"=="8" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 9
|
||||||
if "%CH%"=="9" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 9
|
if "%CH%"=="9" set x=rundll32.exe inetcpl.cpl ResetIEtoDefaults
|
||||||
if "%CH%"=="10" set x=rundll32.exe inetcpl.cpl ResetIEtoDefaults
|
if "%CH%"=="00" goto quit
|
||||||
if "%CH%"=="77" goto quit
|
|
||||||
|
|
||||||
%x%
|
%x%
|
||||||
|
|
||||||
goto Home
|
|
||||||
|
|
||||||
::Temporary Internet Files > Delete files - To delete copies of web pages, images, and media
|
|
||||||
::that are saved for faster viewing.
|
|
||||||
::Cookies > Delete cookies - To delete cookies, which are files that are stored on your computer by
|
|
||||||
::websites to save preferences such as login information.
|
|
||||||
::History > Delete history - To delete the history of the websites you have visited.
|
|
||||||
::Form data > Delete forms - To delete all the saved information that you have typed into
|
|
||||||
::forms.
|
|
||||||
::Passwords > Delete passwords - To delete all the passwords that are automatically filled in
|
|
||||||
::when you log on to a website that you've previously visited.
|
|
||||||
::Delete all - To delete all of these listed items in one operation.
|
|
||||||
|
|
||||||
::enter below in search/run to see Low history dir if exists
|
|
||||||
::C:\Users\%username%\AppData\Local\Microsoft\Windows\History\low
|
|
||||||
|
|
||||||
::Delete all low (untrusted history) very hidden
|
|
||||||
::this will clean any unlocked files under the dir and not delete the dir structure
|
|
||||||
::del /s /q low\* /ah ::del /s /q C:\Users\%username%\AppData\Local\Microsoft\Windows\History\low\* /ah
|
|
||||||
|
|
||||||
goto Home
|
goto Home
|
||||||
:quit
|
:quit
|
||||||
```
|
```
|
||||||
|
@ -65,7 +65,9 @@
|
|||||||
## [Frequently asked security questions](hololens-faq-security.md)
|
## [Frequently asked security questions](hololens-faq-security.md)
|
||||||
## [Status of the HoloLens services](hololens-status.md)
|
## [Status of the HoloLens services](hololens-status.md)
|
||||||
## [Get support](https://support.microsoft.com/supportforbusiness/productselection?sapid=3ec35c62-022f-466b-3a1e-dbbb7b9a55fb)
|
## [Get support](https://support.microsoft.com/supportforbusiness/productselection?sapid=3ec35c62-022f-466b-3a1e-dbbb7b9a55fb)
|
||||||
## [SCEP whitepaper](scep-whitepaper.md)
|
|
||||||
|
# Resources
|
||||||
|
## [Windows Autopilot for HoloLens 2 evaluation guide](hololens2-autopilot.md)
|
||||||
|
|
||||||
# [HoloLens release notes](hololens-release-notes.md)
|
# [HoloLens release notes](hololens-release-notes.md)
|
||||||
# [Give us feedback](hololens-feedback.md)
|
# [Give us feedback](hololens-feedback.md)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: Change history for Microsoft HoloLens documentation
|
title: Change history for Microsoft HoloLens documentation
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
description: This topic lists new and updated topics for HoloLens.
|
description: This topic lists new and updated topics for HoloLens.
|
||||||
keywords: change history
|
keywords: change history
|
||||||
ms.prod: hololens
|
ms.prod: hololens
|
||||||
|
@ -30,7 +30,7 @@ This article teaches you how to control HoloLens and your holographic world with
|
|||||||
|
|
||||||
## Built-in voice commands
|
## Built-in voice commands
|
||||||
|
|
||||||
Get around HoloLens faster with these basic commands. In order to use these you need to enable Speech during first run of the device or in **Settings** > **Privacy** > **Speech**. You can always check whether speech is enabled by looking at the status at the top of Start menu.
|
Get around HoloLens faster with these basic commands. In order to use these, you need to enable Speech during the first run of the device or in **Settings** > **Privacy** > **Speech**. You can always check whether speech is enabled by looking at the status at the top of the Start menu. For the best speech recognition results, HoloLens 2 uses the Microsoft cloud-based services. However, you can use Settings to disable this feature. To do this, in Settings, turn off **Online speech recognition**. After you change this setting, HoloLens 2 will only process voice data locally to recognize commands and dictation, and Cortana will not be available.
|
||||||
|
|
||||||
### General speech commands
|
### General speech commands
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ ms.topic: article
|
|||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.date: 01/26/2019
|
ms.date: 01/26/2019
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
appliesto:
|
appliesto:
|
||||||
- HoloLens (1st gen)
|
- HoloLens (1st gen)
|
||||||
---
|
---
|
||||||
|
@ -10,7 +10,7 @@ ms.topic: article
|
|||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.date: 07/15/2019
|
ms.date: 07/15/2019
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
appliesto:
|
appliesto:
|
||||||
- HoloLens (1st gen)
|
- HoloLens (1st gen)
|
||||||
- HoloLens 2
|
- HoloLens 2
|
||||||
|
@ -73,8 +73,6 @@ appliesto:
|
|||||||
1. **When a PKI cert is being generated for trusted communication, we want the cert to be generated on the device so that we know it's only on that device, unique to that device, and can't be exported or used to impersonate the device. Is this true on HoloLens? If not is there a potential mitigation?**
|
1. **When a PKI cert is being generated for trusted communication, we want the cert to be generated on the device so that we know it's only on that device, unique to that device, and can't be exported or used to impersonate the device. Is this true on HoloLens? If not is there a potential mitigation?**
|
||||||
1. CSR for SCEP is generated on the device itself. Intune and the on premise SCEP connector help secure the requests themselves by adding and verifying a challenge string that's sent to the client.
|
1. CSR for SCEP is generated on the device itself. Intune and the on premise SCEP connector help secure the requests themselves by adding and verifying a challenge string that's sent to the client.
|
||||||
1. Since HoloLens (1st Gen and 2nd Gen) have a TPM module, these certs would be stored in the TPM module, and are unable to be extracted. Additionally, even if it could be extracted, the challenge strings couldn't be verified on a different device, rendering the certs/key unusable on different devices.
|
1. Since HoloLens (1st Gen and 2nd Gen) have a TPM module, these certs would be stored in the TPM module, and are unable to be extracted. Additionally, even if it could be extracted, the challenge strings couldn't be verified on a different device, rendering the certs/key unusable on different devices.
|
||||||
1. **SCEP is vulnerable. How does Microsoft mitigate the known vulnerabilities of SCEP?**
|
|
||||||
1. This [SCEP Whitepaper](scep-whitepaper.md) addresses how Microsoft mitigates SCEP vulnerabilities.
|
|
||||||
|
|
||||||
## HoloLens 2nd Gen Security Questions
|
## HoloLens 2nd Gen Security Questions
|
||||||
|
|
||||||
@ -125,5 +123,3 @@ appliesto:
|
|||||||
1. **When a PKI cert is being generated for trusted communication, we want the cert to be generated on the device so that we know it's only on that device, unique to that device, and can't be exported or used to impersonate the device. Is this true on HoloLens? If not is there a potential mitigation?**
|
1. **When a PKI cert is being generated for trusted communication, we want the cert to be generated on the device so that we know it's only on that device, unique to that device, and can't be exported or used to impersonate the device. Is this true on HoloLens? If not is there a potential mitigation?**
|
||||||
1. CSR for SCEP is generated on the device itself. Intune and the on premise SCEP connector help secure the requests themselves by adding and verifying a challenge string that's sent to the client.
|
1. CSR for SCEP is generated on the device itself. Intune and the on premise SCEP connector help secure the requests themselves by adding and verifying a challenge string that's sent to the client.
|
||||||
1. Since HoloLens (1st Gen and 2nd Gen) have a TPM module, these certs would be stored in the TPM module, and are unable to be extracted. Additionally, even if it could be extracted, the challenge strings couldn't be verified on a different device, rendering the certs/key unusable on different devices.
|
1. Since HoloLens (1st Gen and 2nd Gen) have a TPM module, these certs would be stored in the TPM module, and are unable to be extracted. Additionally, even if it could be extracted, the challenge strings couldn't be verified on a different device, rendering the certs/key unusable on different devices.
|
||||||
1. **SCEP is vulnerable. How does Microsoft mitigate the known vulnerabilities of SCEP?**
|
|
||||||
1. This [SCEP Whitepaper](scep-whitepaper.md) addresses how Microsoft mitigates SCEP vulnerabilities.
|
|
||||||
|
@ -11,9 +11,9 @@ ms.custom:
|
|||||||
- CSSTroubleshooting
|
- CSSTroubleshooting
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
audience: ITPro
|
audience: ITPro
|
||||||
ms.date: 1/6/2020
|
ms.date: 4/14/2020
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
appliesto:
|
appliesto:
|
||||||
- HoloLens 2
|
- HoloLens 2
|
||||||
---
|
---
|
||||||
@ -64,7 +64,7 @@ Here's a quick summary of what's new:
|
|||||||
- Support for FIDO2 Security Keys to enable secure and easy authentication for shared devices
|
- Support for FIDO2 Security Keys to enable secure and easy authentication for shared devices
|
||||||
- Seamlessly apply a provisioning package from a USB drive to your HoloLens
|
- Seamlessly apply a provisioning package from a USB drive to your HoloLens
|
||||||
- Use a provisioning packages to enroll your HoloLens to your Mobile Device Management system
|
- Use a provisioning packages to enroll your HoloLens to your Mobile Device Management system
|
||||||
- Use Windows AutoPilot to set up and pre-configure new devices, quickly getting them ready for productive use. Send a note to hlappreview@microsoft.com to join the preview.
|
- Use Windows Autopilot to set up and pre-configure new devices, quickly getting them ready for productive use. To participate in the program you'll need to meet a few requirements. While the program is in preview mode you'll need to be using Microsoft Intune. You'll need to use a tenant that is flighted for HoloLens. Lastly you'll need to have installed an insider preview buildon your HoloLens 2. To praticipate in the preview of this new program send a note to hlappreview@microsoft.com to join the preview.
|
||||||
- Dark Mode - HoloLens customers can now choose the default mode for apps that support both color schemes! Based on customer feedback, with this update we are setting the default app mode to "dark," but you can easily change this setting at any time.
|
- Dark Mode - HoloLens customers can now choose the default mode for apps that support both color schemes! Based on customer feedback, with this update we are setting the default app mode to "dark," but you can easily change this setting at any time.
|
||||||
- Support for additional system voice commands
|
- Support for additional system voice commands
|
||||||
- An updated Cortana app with a focus on productivity
|
- An updated Cortana app with a focus on productivity
|
||||||
@ -120,6 +120,19 @@ Here are some of the in-box apps that support Dark mode!
|
|||||||
- 3D Viewer
|
- 3D Viewer
|
||||||
- Movies & TV
|
- Movies & TV
|
||||||
|
|
||||||
|
### Windows Autopilot for HoloLens 2
|
||||||
|
|
||||||
|
This Autopilot program supports Autopilot self-deploying mode to provision HoloLens 2 devices as shared devices under your tenant. Self-deploying mode leverages the device's preinstalled OEM image and drivers during the provisioning process. A user can provision the device without putting the device on and going through the Out-of-the-box Experience (OOBE).
|
||||||
|
|
||||||
|
When a user starts the Autopilot self-deploying process, the process completes the following steps:
|
||||||
|
1. Join the device to Azure Active Directory (Azure AD).
|
||||||
|
2. Use Azure AD to enroll the device in Microsoft Intune (or another MDM service).
|
||||||
|
3. Download the device-targeted policies, certificates, and networking profiles.
|
||||||
|
4. Provision the device.
|
||||||
|
5. Present the sign-in screen to the user.
|
||||||
|
|
||||||
|
For full information about Autopilot, see [Windows Autopilot for HoloLens 2 evaluation guide](hololens2-autopilot.md).
|
||||||
|
|
||||||
### FFU download and flash directions
|
### FFU download and flash directions
|
||||||
To test with a flight signed ffu, you first have to flight unlock your device prior to flashing the flight signed ffu.
|
To test with a flight signed ffu, you first have to flight unlock your device prior to flashing the flight signed ffu.
|
||||||
1. On PC
|
1. On PC
|
||||||
|
@ -12,7 +12,7 @@ ms.custom:
|
|||||||
- CI 111456
|
- CI 111456
|
||||||
- CSSTroubleshooting
|
- CSSTroubleshooting
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
appliesto:
|
appliesto:
|
||||||
- HoloLens (1st gen)
|
- HoloLens (1st gen)
|
||||||
- HoloLens 2
|
- HoloLens 2
|
||||||
|
@ -9,7 +9,7 @@ ms.topic: article
|
|||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.date: 09/16/2019
|
ms.date: 09/16/2019
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
appliesto:
|
appliesto:
|
||||||
- HoloLens (1st gen)
|
- HoloLens (1st gen)
|
||||||
- HoloLens 2
|
- HoloLens 2
|
||||||
|
@ -16,7 +16,7 @@ ms.custom:
|
|||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.date: 03/10/2020
|
ms.date: 03/10/2020
|
||||||
ms.reviewer: Teresa-Motiv
|
ms.reviewer: Teresa-Motiv
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
appliesto:
|
appliesto:
|
||||||
- HoloLens (1st gen)
|
- HoloLens (1st gen)
|
||||||
- HoloLens 2
|
- HoloLens 2
|
||||||
|
@ -3,7 +3,7 @@ title: HoloLens release notes
|
|||||||
description: Learn about updates in each new HoloLens release.
|
description: Learn about updates in each new HoloLens release.
|
||||||
author: scooley
|
author: scooley
|
||||||
ms.author: scooley
|
ms.author: scooley
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.prod: hololens
|
ms.prod: hololens
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
@ -26,7 +26,7 @@ appliesto:
|
|||||||
> [!Note]
|
> [!Note]
|
||||||
> HoloLens Emulator Release Notes can be found [here](https://docs.microsoft.com/windows/mixed-reality/hololens-emulator-archive).
|
> HoloLens Emulator Release Notes can be found [here](https://docs.microsoft.com/windows/mixed-reality/hololens-emulator-archive).
|
||||||
|
|
||||||
### Coming Soon
|
### April Update - build 18362.1059
|
||||||
|
|
||||||
**Dark mode for supported apps**
|
**Dark mode for supported apps**
|
||||||
|
|
||||||
|
249
devices/hololens/hololens2-autopilot.md
Normal file
@ -0,0 +1,249 @@
|
|||||||
|
---
|
||||||
|
title: Windows Autopilot for HoloLens 2 evaluation guide
|
||||||
|
description:
|
||||||
|
author: Teresa-Motiv
|
||||||
|
ms.author: v-tea
|
||||||
|
ms.date: 4/10/2020
|
||||||
|
ms.prod: hololens
|
||||||
|
ms.topic: article
|
||||||
|
ms.custom:
|
||||||
|
- CI 116283
|
||||||
|
- CSSTroubleshooting
|
||||||
|
audience: ITPro
|
||||||
|
ms.localizationpriority: high
|
||||||
|
keywords: autopilot
|
||||||
|
manager: jarrettr
|
||||||
|
appliesto:
|
||||||
|
- HoloLens 2
|
||||||
|
---
|
||||||
|
|
||||||
|
# Windows Autopilot for HoloLens 2 evaluation guide
|
||||||
|
|
||||||
|
When you set up HoloLens 2 devices for the Windows Autopilot program, your users can follow a simple process to provision the devices from the cloud.
|
||||||
|
|
||||||
|
This Autopilot program supports Autopilot self-deploying mode to provision HoloLens 2 devices as shared devices under your tenant. Self-deploying mode leverages the device's preinstalled OEM image and drivers during the provisioning process. A user can provision the device without putting the device on and going through the Out-of-the-box Experience (OOBE).
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
When a user starts the Autopilot self-deploying process, the process completes the following steps:
|
||||||
|
|
||||||
|
1. Join the device to Azure Active Directory (Azure AD).
|
||||||
|
> [!NOTE]
|
||||||
|
> Autopilot for HoloLens does not support Active Directory join or Hybrid Azure AD join.
|
||||||
|
1. Use Azure AD to enroll the device in Microsoft Intune (or another MDM service).
|
||||||
|
1. Download the device-targeted policies, certificates, and networking profiles.
|
||||||
|
1. Provision the device.
|
||||||
|
1. Present the sign-in screen to the user.
|
||||||
|
|
||||||
|
## Windows Autopilot for HoloLens 2: Get started
|
||||||
|
|
||||||
|
The following steps summarize the process of setting up your environment for the Windows Autopilot for HoloLens 2. The rest of this section provides the details of these steps.
|
||||||
|
|
||||||
|
1. Enroll in the Windows Autopilot for HoloLens 2 program.
|
||||||
|
1. Make sure that you meet the requirements for Windows Autopilot for HoloLens.
|
||||||
|
1. Verify that your tenant is flighted (enrolled to participate in the program).
|
||||||
|
1. Register devices in Windows Autopilot.
|
||||||
|
1. Create a device group.
|
||||||
|
1. Create a deployment profile.
|
||||||
|
1. Verify the ESP configuration.
|
||||||
|
1. Configure a custom configuration profile for HoloLens devices (known issue).
|
||||||
|
1. Verify the profile status of the HoloLens devices.
|
||||||
|
|
||||||
|
### 1. Enroll in the Windows Autopilot for HoloLens 2 program
|
||||||
|
|
||||||
|
To participate in the program, you have to use a tenant that is flighted for HoloLens. To do this, go to [Windows Autopilot for HoloLens Private Preview request](https://aka.ms/APHoloLensTAP) or use the following QR code to submit a request.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
In this request, provide the following information:
|
||||||
|
|
||||||
|
- Tenant domain
|
||||||
|
- Tenant ID
|
||||||
|
- Number of HoloLens 2 devices that are participating in this evaluation
|
||||||
|
- Number of HoloLens 2 devices that you plan to deploy by using Autopilot self-deploying mode
|
||||||
|
|
||||||
|
### 2. Make sure that you meet the requirements for Windows Autopilot for HoloLens
|
||||||
|
|
||||||
|
For the latest information about how to participate in the program, review [Windows Insider Release Notes](hololens-insider.md#windows-insider-release-notes).
|
||||||
|
|
||||||
|
Review the following sections of the Windows Autopilot requirements article:
|
||||||
|
|
||||||
|
- [Network requirements](https://docs.microsoft.com/windows/deployment/windows-autopilot/windows-autopilot-requirements#networking-requirements)
|
||||||
|
- [Licensing requirements](https://docs.microsoft.com/windows/deployment/windows-autopilot/windows-autopilot-requirements#licensing-requirements)
|
||||||
|
- [Configuration requirements](https://docs.microsoft.com/windows/deployment/windows-autopilot/windows-autopilot-requirements#configuration-requirements)
|
||||||
|
> [!IMPORTANT]
|
||||||
|
> For information about how to register devices and configure profiles, see [4. Register devices in Windows Autopilot](#4-register-devices-in-windows-autopilot) and [6. Create a deployment profile](#6-create-a-deployment-profile) in this article. These sections provide steps that are specific to HoloLens.
|
||||||
|
|
||||||
|
> [!IMPORTANT]
|
||||||
|
> Unlike other Windows Autopilot programs, Windows Autopilot for HoloLens 2 has specific operating system requirements.
|
||||||
|
|
||||||
|
Review the "[Requirements](https://docs.microsoft.com/windows/deployment/windows-autopilot/self-deploying#requirements)" section of the Windows Autopilot Self-Deploying mode article. Your environment has to meet these requirements as well as the standard Windows Autopilot requirements.
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
> You do not have to review the "Step by step" and "Validation" sections of the article. The procedures later in this article provide corresponding steps that are specific to HoloLens.
|
||||||
|
|
||||||
|
Before you start the OOBE and provisioning process, make sure that the HoloLens devices meet the following requirements:
|
||||||
|
|
||||||
|
- The devices are not already members of Azure AD, and are not enrolled in Intune (or another MDM system). The Autopilot self-deploying process completes these steps. To make sure that all the device-related information is cleaned up, check the **Devices** pages in both Azure AD and Intune.
|
||||||
|
- Every device can connect to the internet. You can use a wired or wireless connection.
|
||||||
|
- Every device can connect to a computer by using a USB-C cable, and that computer has the following available:
|
||||||
|
- Advanced Recovery Companion (ARC)
|
||||||
|
- The latest Windows update: Windows 10, version 19041.1002.200107-0909 or a later version)
|
||||||
|
|
||||||
|
To configure and manage the Autopilot self-deploying mode profiles, make sure that you have access to [Microsoft Endpoint Manager admin center](https://endpoint.microsoft.com).
|
||||||
|
|
||||||
|
### 3. Verify that your tenant is flighted
|
||||||
|
|
||||||
|
To verify that your tenant is flighted for the Autopilot program after you submit your request, follow these steps:
|
||||||
|
|
||||||
|
1. Sign in to [Microsoft Endpoint Manager admin center](https://endpoint.microsoft.com).
|
||||||
|
1. Select **Devices** > **Windows** > **Windows enrollment** > **Windows Autopilot deployment profiles** > **Create profile**.
|
||||||
|
|
||||||
|

|
||||||
|
You should see a list that includes **HoloLens**. If this option is not present, use one of the [Feedback](#feedback) options to contact us.
|
||||||
|
|
||||||
|
### 4. Register devices in Windows Autopilot
|
||||||
|
|
||||||
|
To register a HoloLens device in the Windows Autopilot program, you have to obtain the hardware hash of the device (also known as the hardware ID). The device can record its hardware hash in a CSV file during the OOBE process, or later when a device owner starts the diagnostic log collection process (described in the following procedure). Typically, the device owner is the first user to sign in to the device.
|
||||||
|
|
||||||
|
**Retrieve a device hardware hash**
|
||||||
|
|
||||||
|
1. Start the HoloLens 2 device, and make sure that you sign in by using an account that is the device owner.
|
||||||
|
1. On the device, press the Power and Volume Down buttons at the same time and then release them. The device collects diagnostic logs and the hardware hash, and stores them in a set of .zip files.
|
||||||
|
1. Use a USB-C cable to connect the device to a computer.
|
||||||
|
1. On the computer, open File Explorer. Open **This PC\\\<*HoloLens device name*>\\Internal Storage\\Documents**, and locate the AutopilotDiagnostics.zip file.
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
> The .zip file may not immediately be available. If the file is not ready yet you may see a HoloLensDiagnostics.temp file in the Documents folder. To update the list of files, refresh the window.
|
||||||
|
|
||||||
|
1. Extract the contents of the AutopilotDiagnostics.zip file.
|
||||||
|
1. In the extracted files, locate the CSV file that has a file name prefix of "DeviceHash." Copy that file to a drive on the computer where you can access it later.
|
||||||
|
> [!IMPORTANT]
|
||||||
|
> The data in the CSV file should use the following header and line format:
|
||||||
|
> ```
|
||||||
|
> Device Serial Number,Windows Product ID,Hardware Hash,Group Tag,Assigned User <serialNumber>,<ProductID>,<hardwareHash>,<optionalGroupTag>,<optionalAssignedUser>
|
||||||
|
>```
|
||||||
|
|
||||||
|
**Register the device in Windows Autopilot**
|
||||||
|
|
||||||
|
1. In Microsoft Endpoint Manager Admin Center, select **Devices** > **Windows** > **Windows enrollment**, and then select **Devices** > **Import** under **Windows Autopilot Deployment Program**.
|
||||||
|
|
||||||
|
1. Under **Add Windows Autopilot devices**, select the DeviceHash CSV file, select **Open**, and then select **Import**.
|
||||||
|
|
||||||
|

|
||||||
|
1. After the import finishes, select **Devices** > **Windows** > **Windows enrollment** > **Devices** > **Sync**. The process might take a few minutes to complete, depending on how many devices are being synchronized. To see the registered device, select **Refresh**.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### 5. Create a device group
|
||||||
|
|
||||||
|
1. In Microsoft Endpoint Manager admin center, select **Groups** > **New group**.
|
||||||
|
1. For **Group type**, select **Security**, and then enter a group name and description.
|
||||||
|
1. For **Membership type**, select either **Assigned** or **Dynamic Device**.
|
||||||
|
1. Do one of the following:
|
||||||
|
|
||||||
|
- If you selected **Assigned** for **Membership type** in the previous step, select **Members**, and then add Autopilot devices to the group. Autopilot devices that aren't yet enrolled are listed by using the device serial number as the device name.
|
||||||
|
- If you selected **Dynamic Devices** for **Membership type** in the previous step, select **Dynamic device members**, and then enter code in **Advanced rule** that resembles the following:
|
||||||
|
- If you want to create a group that includes all of your Autopilot devices, type: `(device.devicePhysicalIDs -any _ -contains "[ZTDId]")`
|
||||||
|
- Intune's group tag field maps to the **OrderID** attribute on Azure AD devices. If you want to create a group that includes all of your Autopilot devices that have a specific group tag (the Azure AD device OrderID), you must type: `(device.devicePhysicalIds -any _ -eq "[OrderID]:179887111881")`
|
||||||
|
- If you want to create a group that includes all your Autopilot devices that have a specific Purchase Order ID, type: `(device.devicePhysicalIds -any _ -eq "[PurchaseOrderId]:76222342342")`
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
> These rules target attributes that are unique to Autopilot devices.
|
||||||
|
1. Select **Save**, and then select **Create**.
|
||||||
|
|
||||||
|
### 6. Create a deployment profile
|
||||||
|
|
||||||
|
1. In Microsoft Endpoint Manager admin center, select **Devices** > **Windows** > **Windows enrollment** > **Windows Autopilot deployment profiles** > **Create profile** > **HoloLens**.
|
||||||
|
1. Enter a profile name and description, and then select **Next**.
|
||||||
|
|
||||||
|

|
||||||
|
1. On the **Out-of-box experience (OOBE)** page, most of the settings are pre-configured to streamline OOBE for this evaluation. Optionally, you can configure the following settings:
|
||||||
|
|
||||||
|
- **Language (Region)**: Select the language for OOBE. We recommend that you select a language from the list of [supported languages for HoloLens 2](hololens2-language-support.md).
|
||||||
|
- **Automatically configure keyboard**: To make sure that the keyboard matches the selected language, select **Yes**.
|
||||||
|
- **Apply device name template**: To automatically set the device name during OOBE, select **Yes** and then enter the template phrase and placeholders in **Enter a name** For example, enter a prefix and `%RAND:4%`—a placeholder for a four-digit random number.
|
||||||
|
> [!NOTE]
|
||||||
|
> If you use a device name template, the OOBE process restarts the device one additional time after it applies the device name and before it joins the device to Azure AD. This restart enables the new name to take effect.
|
||||||
|
|
||||||
|

|
||||||
|
1. After you configure the settings, select **Next**.
|
||||||
|
1. On the **Scope tags** page, optionally add the scope tags that you want to apply to this profile. For more information about scope tags, see [Use role-based access control and scope tags for distributed IT](https://docs.microsoft.com/mem/intune/fundamentals/scope-tags.md). When finished, select **Next**.
|
||||||
|
1. On the **Assignments** page, select **Selected groups** for **Assign to**.
|
||||||
|
1. Under **SELECTED GROUPS**, select **+ Select groups to include**.
|
||||||
|
1. In the **Select groups to include** list, select the device group that you created for the Autopilot HoloLens devices, and then select **Next**.
|
||||||
|
|
||||||
|
If you want to exclude any groups, select **Select groups to exclude**, and select the groups that you want to exclude.
|
||||||
|
|
||||||
|

|
||||||
|
1. On the **Review + Create** page, review the settings and then select **Create** to create the profile.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### 7. Verify the ESP configuration
|
||||||
|
|
||||||
|
The Enrollment Status Page (ESP) displays the status of the complete device configuration process that runs when an MDM managed user signs into a device for the first time. Make sure that your ESP configuration resembles the following, and verify that the assignments are correct.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### 8. Configure a custom configuration profile for HoloLens devices (known issue)
|
||||||
|
|
||||||
|
1. In [Microsoft Endpoint Manager admin center](https://endpoint.microsoft.com), select **Devices** > **Configuration profiles** > **Create profile**.
|
||||||
|
1. For **Platform**, specify **Windows 10 and later**, and for **Profile**, select **Custom**.
|
||||||
|
1. Select **Create**.
|
||||||
|
1. Enter a name for the profile, and then select **Settings** > **Configure**.
|
||||||
|
|
||||||
|

|
||||||
|
1. Select **Add**, and then specify the following information:
|
||||||
|
|
||||||
|
- **Name**: SidecarPath
|
||||||
|
- **OMA-URI**: ./images/Device/Vendor/MSFT/EnrollmentStatusTracking/DevicePreparation/PolicyProviders/Sidecar/InstallationState
|
||||||
|
- **Data type**: Integer
|
||||||
|
- **Value**: 2
|
||||||
|
1. Select **OK** two times, and then select **Create** to create the profile.
|
||||||
|
1. After Intune creates the configuration profile, assign the configuration profile to the device group for the HoloLens devices.
|
||||||
|
|
||||||
|
### 9. Verify the profile status of the HoloLens devices
|
||||||
|
|
||||||
|
1. In Microsoft Endpoint Manager Admin Center, select **Devices** > **Windows** > **Windows enrollment** > **Devices**.
|
||||||
|
1. Verify that the HoloLens devices are listed, and that their profile status is **Assigned**.
|
||||||
|
> [!NOTE]
|
||||||
|
> It may take a few minutes for the profile to be assigned to the device.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Windows Autopilot for HoloLens 2 User Experience
|
||||||
|
|
||||||
|
Your HoloLens users can follow these steps to provision HoloLens devices.
|
||||||
|
|
||||||
|
1. Use the USB-C cable to connect the HoloLens device to a computer that has Advanced Recovery Companion (ARC) installed and has the appropriate Windows update downloaded.
|
||||||
|
1. Use ARC to flash the appropriate version of Windows on to the device.
|
||||||
|
1. Connect the device to the network, and then restart the device.
|
||||||
|
> [!IMPORTANT]
|
||||||
|
> You must connect the device to the network before the Out-of-the-Box-Experience (OOBE) starts. The device determines whether it is provisioning as an Autopilot device while on the first OOBE screen. If the device cannot connect to the network, or if you choose not to provision the device as an Autopilot device, you cannot change to Autopilot provisioning at a later time. Instead, you would have to start this procedure over in order to provision the device as an Autopilot device.
|
||||||
|
|
||||||
|
The device should automatically start OOBE. Do not interact with OOBE. Instead sit, back and relax! Let HoloLens 2 detect network connectivity and allow it complete OOBE automatically. The device may restart during OOBE. The OOBE screens should resemble the following.
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
At the end of OOBE, you can sign in to the device by using your user name and password.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Known Issues
|
||||||
|
|
||||||
|
- The list of supported languages for Autopilot deployment profiles includes languages that HoloLens does not support. Select a language that [HoloLens supports](hololens2-language-support.md).
|
||||||
|
|
||||||
|
## Feedback
|
||||||
|
|
||||||
|
To provide feedback or report issues, use one of the following methods:
|
||||||
|
|
||||||
|
- Use the Feedback Hub app. You can find this app on a HoloLens-connected computer. In Feedback Hub, select the **Enterprise Management** > **Device** category.
|
||||||
|
|
||||||
|
When you provide feedback or report an issue, provide a detailed description. If applicable, include screenshots and logs.
|
||||||
|
- Send an email message to [hlappreview@microsoft.com](mailto:hlappreview@microsoft.com). For the email subject, enter **\<*Tenant*> Autopilot for HoloLens 2 evaluation feedback** (where \<*Tenant*> is the name of your Intune tenant).
|
||||||
|
|
||||||
|
Provide a detailed description in your message. However, unless Support personnel specifically request it, do not include data such as screenshots or logs. Such data might include private or personally identifiable information (PII).
|
@ -3,7 +3,7 @@ title: HoloLens 2 device care and cleaning FAQ
|
|||||||
description:
|
description:
|
||||||
author: Teresa-Motiv
|
author: Teresa-Motiv
|
||||||
ms.author: v-tea
|
ms.author: v-tea
|
||||||
ms.date: 3/26/2020
|
ms.date: 4/14/2020
|
||||||
ms.prod: hololens
|
ms.prod: hololens
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.custom:
|
ms.custom:
|
||||||
@ -69,10 +69,10 @@ To clean the brow pad, wipe it by using a cloth that's moistened by using water
|
|||||||
|
|
||||||
## Can I use ultraviolet (UV) light to sanitize the device?
|
## Can I use ultraviolet (UV) light to sanitize the device?
|
||||||
|
|
||||||
UV germicidal irradiation has not been tested on HoloLens 2.
|
UV-C germicidal irradiation has not been tested on HoloLens 2.
|
||||||
|
|
||||||
> [!CAUTION]
|
> [!CAUTION]
|
||||||
> High levels of UV exposure can degrade the display quality of the device and damage the visor coating. Over-exposure to UV radiation has the following effects, in order of the duration and intensity of exposure:
|
> High levels of UV-A and UV-B exposure can degrade the display quality of the device and damage the visor coating. Over-exposure to UV-A and UV-B radiation has the following effects, in order of the duration and intensity of exposure:
|
||||||
>
|
>
|
||||||
> 1. The brow pad and device closures become discolored.
|
> 1. The brow pad and device closures become discolored.
|
||||||
> 1. Defects appear in the anti-reflective (AR) coating on the visor and on the sensor windows.
|
> 1. Defects appear in the anti-reflective (AR) coating on the visor and on the sensor windows.
|
||||||
|
BIN
devices/hololens/images/hololens-ap-devices-assignments.png
Normal file
After Width: | Height: | Size: 56 KiB |
BIN
devices/hololens/images/hololens-ap-devices-sync.png
Normal file
After Width: | Height: | Size: 50 KiB |
BIN
devices/hololens/images/hololens-ap-enrollment-profiles.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
devices/hololens/images/hololens-ap-hash-import.png
Normal file
After Width: | Height: | Size: 115 KiB |
BIN
devices/hololens/images/hololens-ap-intro.png
Normal file
After Width: | Height: | Size: 90 KiB |
After Width: | Height: | Size: 92 KiB |
BIN
devices/hololens/images/hololens-ap-profile-name.png
Normal file
After Width: | Height: | Size: 136 KiB |
BIN
devices/hololens/images/hololens-ap-profile-oobe.png
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
devices/hololens/images/hololens-ap-profile-settings-oma.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
devices/hololens/images/hololens-ap-profile-settings.png
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
devices/hololens/images/hololens-ap-profile-summ.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
devices/hololens/images/hololens-ap-qrcode.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
devices/hololens/images/hololens-ap-uex-1.png
Normal file
After Width: | Height: | Size: 136 KiB |
BIN
devices/hololens/images/hololens-ap-uex-2.png
Normal file
After Width: | Height: | Size: 196 KiB |
BIN
devices/hololens/images/hololens-ap-uex-3.png
Normal file
After Width: | Height: | Size: 294 KiB |
BIN
devices/hololens/images/hololens-ap-uex-4.png
Normal file
After Width: | Height: | Size: 235 KiB |
BIN
devices/hololens/images/hololens-ap-uex-5.png
Normal file
After Width: | Height: | Size: 45 KiB |
@ -1,80 +0,0 @@
|
|||||||
---
|
|
||||||
title: SCEP Whitepaper
|
|
||||||
description: A whitepaper that describes how Microsoft mitigates the vulnerabilities of SCEP.
|
|
||||||
ms.assetid: bd55ecd1-697a-4b09-8274-48d1499fcb0b
|
|
||||||
author: pawinfie
|
|
||||||
ms.author: pawinfie
|
|
||||||
ms.date: 02/12/2020
|
|
||||||
keywords: hololens, Windows Mixed Reality, security
|
|
||||||
ms.prod: hololens
|
|
||||||
ms.sitesec: library
|
|
||||||
ms.topic: article
|
|
||||||
audience: ITPro
|
|
||||||
ms.localizationpriority: high
|
|
||||||
ms.custom:
|
|
||||||
- CI 111456
|
|
||||||
- CSSTroubleshooting
|
|
||||||
appliesto:
|
|
||||||
- HoloLens 1 (1st gen)
|
|
||||||
- HoloLens 2
|
|
||||||
---
|
|
||||||
|
|
||||||
# SCEP whitepaper
|
|
||||||
|
|
||||||
## High Level
|
|
||||||
|
|
||||||
### How the SCEP Challenge PW is secured
|
|
||||||
|
|
||||||
We work around the weakness of the SCEP protocol by generating custom challenges in Intune itself. The challenge string we create is signed/encrypted, and contains the information we've configured in Intune for certificate issuance into the challenge blob. This means the blob used as the challenge string contains the expected CSR information like the Subject Name, Subject Alternative Name, and other attributes.
|
|
||||||
|
|
||||||
We then pass that to the device and then the device generates it's CSR and passes it, and the blob to the SCEP URL it received in the MDM profile. On NDES servers running the Intune SCEP module we perform a custom challenge validation that validates the signature on the blob, decrypts the challenge blob itself, compare it to the CSR received, and then determine if we should issue the cert. If any portion of this check fails then the certificate request is rejected.
|
|
||||||
|
|
||||||
## Behind the scenes
|
|
||||||
|
|
||||||
### Intune Connector has a number of responsibilities
|
|
||||||
|
|
||||||
1. The connector is SCEP policy module which contains a "Certification Registration Point" component which interacts with the Intune service, and is responsible for validating, and securing the SCEP request coming into the NDES server.
|
|
||||||
|
|
||||||
1. The connector will install an App Pool on the NDES IIS server > Microsoft Intune CRP service Pool, and a CertificateRegistrationSvc under the "Default Web Site" on IIS.
|
|
||||||
|
|
||||||
1. **When the Intune NDES connector is first configured/setup on the NDES server, a certificate is issued from the Intune cloud service to the NDES server. This cert is used to securely communicate with the Intune cloud service - customer tenant. The cert is unique to the customers NDES server. Can be viewed in Certlm.msc issued by SC_Online_Issuing. This certs Public key is used by Intune in the cloud to encrypt the challenge blob. In addition, when the connector is configured, Intune's public key is sent to the NDES server.**
|
|
||||||
>[!NOTE]
|
|
||||||
>The connector communication with Intune is strictly outbound traffic.
|
|
||||||
|
|
||||||
1. The Intune cloud service combined with the Intune connector/policy module addresses the SCEP protocol challenge password weakness (in the SCEP protocol) by generating a custom challenge. The challenge is generated in Intune itself.
|
|
||||||
|
|
||||||
1. In the challenge blob, Intune puts information that we expect in the cert request (CSR - Certificate Signing Request) coming from a mobile device like the following: what we expect the Subject and SAN (validated against AAD attributes/properties of the user/device) to be, and specifics contained in the Intune SCEP profile that is created by an Intune admin, i.e., Request Handling, EKU, Renewal, validity period, key size, renewal period.
|
|
||||||
>[!NOTE]
|
|
||||||
>The Challenge blob is Encrypted with the Connectors Public Key, and Signed with Intune's (cloud service) Private Key. The device cannot decrypt the challenge
|
|
||||||
|
|
||||||
1. When an Intune admin creates a SCEP profile in their tenant, Intune will send the SCEP profile payload along with the Encrypted and Signed Challenge to the targeted device. The device generates a CSR, and reaches out to NDES URL (contained in the SCEP profile). The device cert request payload contains the CSR, and the encrypted, signed challenge blob.
|
|
||||||
|
|
||||||
1. When the device reaches out to the NDES server (via the NDES/SCEP URL provided in the SCEP Profile payload), the SCEP cert request validation is performed by the policy module running on the NDES server. The challenge signature is verified using Intune's public key (which is on the NDES server, when the connector was installed and configured) and decrypted using the connectors private key. The policy module compares the CSR details against the decrypted challenge and determines if a cert should be issued. If the CSR passes validation, the NDES server requests a certificate from the CA on behalf of the user/device.
|
|
||||||
>[!NOTE]
|
|
||||||
>The above process takes place on the NDES server running the Policy Module. No interaction with the Intune cloud service takes place.
|
|
||||||
|
|
||||||
1. The NDES connector notification/reporting of cert delivery takes place after NDES sends the issued cert to the device. This is performed as a separate operation outside the cert request flow. Meaning that once NDES sends the cert to the device via the AAD app proxy (or other publishing firewall/proxy, a log is written with the cert delivery details on the NDES server by the connector (file location \Program Files\Microsoft Intune\CertificateRequestStatus\Succeed\ folder. The connector will look here, and send updates to Intune.
|
|
||||||
|
|
||||||
1. The mobile device must be enrolled in Intune. If not, we reject the request as well
|
|
||||||
|
|
||||||
1. The Intune connector disables the standard NDES challenge password request URL on the NDES server.
|
|
||||||
|
|
||||||
1. The NDES server SCEP URI in most customer deployments is made available to the internet via Azure App Proxy, or an on-prem reverse proxy, i.e. F5.
|
|
||||||
>[!NOTE]
|
|
||||||
>The Azure App Proxy is an outbound-only connection over Port 443, from the customers onprem network where the App Proxy connector is running on a server. The AAD app proxy can also be hosted on the NDES server. No inbound ports required when using Azure App Proxy.
|
|
||||||
|
|
||||||
1. The mobile device talks only to the NDES URI
|
|
||||||
|
|
||||||
1. Side note: AAD app proxy's role is to make onprem resources (like NDES and other customer onprem web services) securely available to the internet.
|
|
||||||
|
|
||||||
1. The Intune connector must communicate with the Intune cloud service. The connector communication will not go through the Azure App Proxy. The connector will talk with the Intune cloud service via whatever mechanism a customer has onprem to allow outbound traffic to the internet, i.e. Internal proxy service.
|
|
||||||
>[!NOTE]
|
|
||||||
> if a proxy is used by the customer, no SSL packet inspection can take place for the NDES/Connector server going out.
|
|
||||||
|
|
||||||
1. Connector traffic with Intune cloud service consists of the following operations:
|
|
||||||
|
|
||||||
1. 1st time configuration of the connector: Authentication to AAD during the initial connector setup.
|
|
||||||
|
|
||||||
1. Connector checks in with Intune, and will process and any cert revocation transactions (i.e, if the Intune tenant admin issues a remote wipe – full or partial, also If a user unenrolls their device from Intune), reporting on issued certs, renewing the connectors' SC_Online_Issuing certificate from Intune. Also note: the NDES Intune connector has shared PKCS cert functionality (if you decide to issue PKCS/PFX based certs) so the connector checks to Intune for PKCS cert requests even though there won't be any requests to process. We are splitting that functionality out, so this connector just handles SCEP, but no ETA yet.
|
|
||||||
|
|
||||||
1. [Here](https://docs.microsoft.com/intune/intune-endpoints#microsoft-intune-certificate-connector) is a reference for Intune NDES connector network communications.
|
|
@ -3,7 +3,7 @@ title: Accessibility (Surface Hub)
|
|||||||
description: Accessibility settings for the Microsoft Surface Hub can be changed by using the Settings app. You'll find them under Ease of Access. Your Surface Hub has the same accessibility options as Windows 10.
|
description: Accessibility settings for the Microsoft Surface Hub can be changed by using the Settings app. You'll find them under Ease of Access. Your Surface Hub has the same accessibility options as Windows 10.
|
||||||
ms.assetid: 1D44723B-1162-4DF6-99A2-8A3F24443442
|
ms.assetid: 1D44723B-1162-4DF6-99A2-8A3F24443442
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: Accessibility settings, Settings app, Ease of Access
|
keywords: Accessibility settings, Settings app, Ease of Access
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Admin group management (Surface Hub)
|
|||||||
description: Every Microsoft Surface Hub can be configured individually by opening the Settings app on the device.
|
description: Every Microsoft Surface Hub can be configured individually by opening the Settings app on the device.
|
||||||
ms.assetid: FA67209E-B355-4333-B903-482C4A3BDCCE
|
ms.assetid: FA67209E-B355-4333-B903-482C4A3BDCCE
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: admin group management, Settings app, configure Surface Hub
|
keywords: admin group management, Settings app, configure Surface Hub
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: PowerShell for Surface Hub (Surface Hub)
|
|||||||
description: PowerShell scripts to help set up and manage your Microsoft Surface Hub.
|
description: PowerShell scripts to help set up and manage your Microsoft Surface Hub.
|
||||||
ms.assetid: 3EF48F63-8E4C-4D74-ACD5-461F1C653784
|
ms.assetid: 3EF48F63-8E4C-4D74-ACD5-461F1C653784
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: PowerShell, set up Surface Hub, manage Surface Hub
|
keywords: PowerShell, set up Surface Hub, manage Surface Hub
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Applying ActiveSync policies to device accounts (Surface Hub)
|
|||||||
description: The Microsoft Surface Hub's device account uses ActiveSync to sync mail and calendar. This allows people to join and start scheduled meetings from the Surface Hub, and allows them to email any whiteboards they have made during their meeting.
|
description: The Microsoft Surface Hub's device account uses ActiveSync to sync mail and calendar. This allows people to join and start scheduled meetings from the Surface Hub, and allows them to email any whiteboards they have made during their meeting.
|
||||||
ms.assetid: FAABBA74-3088-4275-B58E-EC1070F4D110
|
ms.assetid: FAABBA74-3088-4275-B58E-EC1070F4D110
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: Surface Hub, ActiveSync policies
|
keywords: Surface Hub, ActiveSync policies
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: Change history for Surface Hub
|
title: Change history for Surface Hub
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
description: This topic lists new and updated topics for Surface Hub.
|
description: This topic lists new and updated topics for Surface Hub.
|
||||||
keywords: change history
|
keywords: change history
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
|
@ -3,7 +3,7 @@ title: Change the Microsoft Surface Hub device account
|
|||||||
description: You can change the device account in Settings to either add an account if one was not already provisioned, or to change any properties of an account that was already provisioned.
|
description: You can change the device account in Settings to either add an account if one was not already provisioned, or to change any properties of an account that was already provisioned.
|
||||||
ms.assetid: AFC43043-3319-44BC-9310-29B1F375E672
|
ms.assetid: AFC43043-3319-44BC-9310-29B1F375E672
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: change device account, change properties, Surface Hub
|
keywords: change device account, change properties, Surface Hub
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Connect other devices and display with Surface Hub
|
|||||||
description: You can connect other device to your Surface Hub to display content.
|
description: You can connect other device to your Surface Hub to display content.
|
||||||
ms.assetid: 8BB80FA3-D364-4A90-B72B-65F0F0FC1F0D
|
ms.assetid: 8BB80FA3-D364-4A90-B72B-65F0F0FC1F0D
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
author: dansimp
|
author: dansimp
|
||||||
|
@ -3,7 +3,7 @@ title: Create a device account using UI (Surface Hub)
|
|||||||
description: If you prefer to use a graphical user interface, you can create a device account for your Microsoft Surface Hub with either the Office 365 UI or the Exchange Admin Center.
|
description: If you prefer to use a graphical user interface, you can create a device account for your Microsoft Surface Hub with either the Office 365 UI or the Exchange Admin Center.
|
||||||
ms.assetid: D11BCDC4-DABA-4B9A-9ECB-58E02CC8218C
|
ms.assetid: D11BCDC4-DABA-4B9A-9ECB-58E02CC8218C
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: create device account, Office 365 UI, Exchange Admin center, Microsoft 365 admin center, Skype for Business, mobile device mailbox policy
|
keywords: create device account, Office 365 UI, Exchange Admin center, Microsoft 365 admin center, Skype for Business, mobile device mailbox policy
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Create and test a device account (Surface Hub)
|
|||||||
description: This topic introduces how to create and test the device account that Microsoft Surface Hub uses to communicate with Microsoft Exchange and Skype.
|
description: This topic introduces how to create and test the device account that Microsoft Surface Hub uses to communicate with Microsoft Exchange and Skype.
|
||||||
ms.assetid: C8605B5F-2178-4C3A-B4E0-CE32C70ECF67
|
ms.assetid: C8605B5F-2178-4C3A-B4E0-CE32C70ECF67
|
||||||
ms.reviewer: rikot
|
ms.reviewer: rikot
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: create and test device account, device account, Surface Hub and Microsoft Exchange, Surface Hub and Skype
|
keywords: create and test device account, device account, Surface Hub and Microsoft Exchange, Surface Hub and Skype
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Reset or recover a Surface Hub
|
|||||||
description: Describes the reset and recovery processes for the Surface Hub, and provides instructions.
|
description: Describes the reset and recovery processes for the Surface Hub, and provides instructions.
|
||||||
ms.assetid: 44E82EEE-1905-464B-A758-C2A1463909FF
|
ms.assetid: 44E82EEE-1905-464B-A758-C2A1463909FF
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: reset Surface Hub, recover
|
keywords: reset Surface Hub, recover
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -9,7 +9,7 @@ ms.author: dansimp
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 06/20/2019
|
ms.date: 06/20/2019
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ ms.author: dansimp
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 11/15/2017
|
ms.date: 11/15/2017
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ title: Microsoft Exchange properties (Surface Hub)
|
|||||||
description: Some Microsoft Exchange properties of the device account must be set to particular values to have the best meeting experience on Microsoft Surface Hub.
|
description: Some Microsoft Exchange properties of the device account must be set to particular values to have the best meeting experience on Microsoft Surface Hub.
|
||||||
ms.assetid: 3E84393B-C425-45BF-95A6-D6502BA1BF29
|
ms.assetid: 3E84393B-C425-45BF-95A6-D6502BA1BF29
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: Microsoft Exchange properties, device account, Surface Hub, Windows PowerShell cmdlet
|
keywords: Microsoft Exchange properties, device account, Surface Hub, Windows PowerShell cmdlet
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -9,7 +9,7 @@ ms.author: dansimp
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 07/27/2017
|
ms.date: 07/27/2017
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ title: First-run program (Surface Hub)
|
|||||||
description: The term \ 0034;first run \ 0034; refers to the series of steps you'll go through the first time you power up your Microsoft Surface Hub, and means the same thing as \ 0034;out-of-box experience \ 0034; (OOBE). This section will walk you through the process.
|
description: The term \ 0034;first run \ 0034; refers to the series of steps you'll go through the first time you power up your Microsoft Surface Hub, and means the same thing as \ 0034;out-of-box experience \ 0034; (OOBE). This section will walk you through the process.
|
||||||
ms.assetid: 07C9E84C-1245-4511-B3B3-75939AD57C49
|
ms.assetid: 07C9E84C-1245-4511-B3B3-75939AD57C49
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: first run, Surface Hub, out-of-box experience, OOBE
|
keywords: first run, Surface Hub, out-of-box experience, OOBE
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Hybrid deployment (Surface Hub)
|
|||||||
description: A hybrid deployment requires special processing to set up a device account for your Microsoft Surface Hub.
|
description: A hybrid deployment requires special processing to set up a device account for your Microsoft Surface Hub.
|
||||||
ms.assetid: 7BFBB7BE-F587-422E-9CE4-C9DDF829E4F1
|
ms.assetid: 7BFBB7BE-F587-422E-9CE4-C9DDF829E4F1
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: hybrid deployment, device account for Surface Hub, Exchange hosted on-prem, Exchange hosted online
|
keywords: hybrid deployment, device account for Surface Hub, Exchange hosted on-prem, Exchange hosted online
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Install apps on your Microsoft Surface Hub
|
|||||||
description: Admins can install apps can from either the Microsoft Store or the Microsoft Store for Business.
|
description: Admins can install apps can from either the Microsoft Store or the Microsoft Store for Business.
|
||||||
ms.assetid: 3885CB45-D496-4424-8533-C9E3D0EDFD94
|
ms.assetid: 3885CB45-D496-4424-8533-C9E3D0EDFD94
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: install apps, Microsoft Store, Microsoft Store for Business
|
keywords: install apps, Microsoft Store, Microsoft Store for Business
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -9,7 +9,7 @@ ms.author: dansimp
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 07/08/2019
|
ms.date: 07/08/2019
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ title: Manage settings with an MDM provider (Surface Hub)
|
|||||||
description: Microsoft Surface Hub provides an enterprise management solution to help IT administrators manage policies and business applications on these devices using a mobile device management (MDM) solution.
|
description: Microsoft Surface Hub provides an enterprise management solution to help IT administrators manage policies and business applications on these devices using a mobile device management (MDM) solution.
|
||||||
ms.assetid: 18EB8464-6E22-479D-B0C3-21C4ADD168FE
|
ms.assetid: 18EB8464-6E22-479D-B0C3-21C4ADD168FE
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: mobile device management, MDM, manage policies
|
keywords: mobile device management, MDM, manage policies
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -9,7 +9,7 @@ ms.author: dansimp
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 07/27/2017
|
ms.date: 07/27/2017
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ title: Manage Microsoft Surface Hub
|
|||||||
description: How to manage your Surface Hub after finishing the first-run program.
|
description: How to manage your Surface Hub after finishing the first-run program.
|
||||||
ms.assetid: FDB6182C-1211-4A92-A930-6C106BCD5DC1
|
ms.assetid: FDB6182C-1211-4A92-A930-6C106BCD5DC1
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: manage Surface Hub
|
keywords: manage Surface Hub
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Manage Windows updates on Surface Hub
|
|||||||
description: You can manage Windows updates on your Microsoft Surface Hub or Surface Hub 2S by setting the maintenance window, deferring updates, or using Windows Server Update Services (WSUS).
|
description: You can manage Windows updates on your Microsoft Surface Hub or Surface Hub 2S by setting the maintenance window, deferring updates, or using Windows Server Update Services (WSUS).
|
||||||
ms.assetid: A737BD50-2D36-4DE5-A604-55053D549045
|
ms.assetid: A737BD50-2D36-4DE5-A604-55053D549045
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: manage Windows updates, Surface Hub, Windows Server Update Services, WSUS
|
keywords: manage Windows updates, Surface Hub, Windows Server Update Services, WSUS
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -8,7 +8,7 @@ ms.author: dansimp
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 06/20/2019
|
ms.date: 06/20/2019
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
|
|
||||||
@ -41,7 +41,6 @@ If you have a Surface Hub or other Windows 10 device that has been updated to Wi
|
|||||||
- As a Miracast source, the Windows PC or phone must be connected to the same enterprise network via Ethernet or a secure Wi-Fi connection.
|
- As a Miracast source, the Windows PC or phone must be connected to the same enterprise network via Ethernet or a secure Wi-Fi connection.
|
||||||
- The DNS Hostname (device name) of the Surface Hub or device needs to be resolvable via your DNS servers. You can achieve this by either allowing your Surface Hub to register automatically via Dynamic DNS, or by manually creating an A or AAAA record for the Surface Hub's hostname.
|
- The DNS Hostname (device name) of the Surface Hub or device needs to be resolvable via your DNS servers. You can achieve this by either allowing your Surface Hub to register automatically via Dynamic DNS, or by manually creating an A or AAAA record for the Surface Hub's hostname.
|
||||||
- Windows 10 PCs must be connected to the same enterprise network via Ethernet or a secure Wi-Fi connection.
|
- Windows 10 PCs must be connected to the same enterprise network via Ethernet or a secure Wi-Fi connection.
|
||||||
- On Windows 10 PCs, the **Projecting to this PC** feature must be enabled within System Settings, and the device must have a Wi-Fi interface enabled in order to respond to discovery requests.
|
|
||||||
|
|
||||||
|
|
||||||
It is important to note that Miracast over Infrastructure is not a replacement for standard Miracast. Instead, the functionality is complementary, and provides an advantage to users who are part of the enterprise network. Users who are guests to a particular location and don’t have access to the enterprise network will continue to connect using the Wi-Fi Direct connection method.
|
It is important to note that Miracast over Infrastructure is not a replacement for standard Miracast. Instead, the functionality is complementary, and provides an advantage to users who are part of the enterprise network. Users who are guests to a particular location and don’t have access to the enterprise network will continue to connect using the Wi-Fi Direct connection method.
|
||||||
|
@ -8,7 +8,7 @@ ms.author: dansimp
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 06/20/2019
|
ms.date: 06/20/2019
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ title: Monitor your Microsoft Surface Hub
|
|||||||
description: Monitoring for Microsoft Surface Hub devices is enabled through Microsoft Operations Management Suite (OMS).
|
description: Monitoring for Microsoft Surface Hub devices is enabled through Microsoft Operations Management Suite (OMS).
|
||||||
ms.assetid: 1D2ED317-DFD9-423D-B525-B16C2B9D6942
|
ms.assetid: 1D2ED317-DFD9-423D-B525-B16C2B9D6942
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: monitor Surface Hub, Microsoft Operations Management Suite, OMS
|
keywords: monitor Surface Hub, Microsoft Operations Management Suite, OMS
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: On-premises deployment single forest (Surface Hub)
|
|||||||
description: This topic explains how you add a device account for your Microsoft Surface Hub when you have a single-forest, on-premises deployment.
|
description: This topic explains how you add a device account for your Microsoft Surface Hub when you have a single-forest, on-premises deployment.
|
||||||
ms.assetid: 80E12195-A65B-42D1-8B84-ECC3FCBAAFC6
|
ms.assetid: 80E12195-A65B-42D1-8B84-ECC3FCBAAFC6
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: single forest deployment, on prem deployment, device account, Surface Hub
|
keywords: single forest deployment, on prem deployment, device account, Surface Hub
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -8,7 +8,7 @@ author: dansimp
|
|||||||
ms.author: dansimp
|
ms.author: dansimp
|
||||||
ms.date: 08/28/2018
|
ms.date: 08/28/2018
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ title: Online deployment with Office 365 (Surface Hub)
|
|||||||
description: This topic has instructions for adding a device account for your Microsoft Surface Hub when you have a pure, online deployment.
|
description: This topic has instructions for adding a device account for your Microsoft Surface Hub when you have a pure, online deployment.
|
||||||
ms.assetid: D325CA68-A03F-43DF-8520-EACF7C3EDEC1
|
ms.assetid: D325CA68-A03F-43DF-8520-EACF7C3EDEC1
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: device account for Surface Hub, online deployment
|
keywords: device account for Surface Hub, online deployment
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Password management (Surface Hub)
|
|||||||
description: Every Microsoft Surface Hub device account requires a password to authenticate and enable features on the device.
|
description: Every Microsoft Surface Hub device account requires a password to authenticate and enable features on the device.
|
||||||
ms.assetid: 0FBFB546-05F0-430E-905E-87111046E4B8
|
ms.assetid: 0FBFB546-05F0-430E-905E-87111046E4B8
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: password, password management, password rotation, device account
|
keywords: password, password management, password rotation, device account
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Physically install Microsoft Surface Hub
|
|||||||
description: The Microsoft Surface Hub Readiness Guide will help make sure that your site is ready for the installation.
|
description: The Microsoft Surface Hub Readiness Guide will help make sure that your site is ready for the installation.
|
||||||
ms.assetid: C764DBFB-429B-4B29-B4E8-D7F0073BC554
|
ms.assetid: C764DBFB-429B-4B29-B4E8-D7F0073BC554
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: Surface Hub, readiness guide, installation location, mounting options
|
keywords: Surface Hub, readiness guide, installation location, mounting options
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Prepare your environment for Microsoft Surface Hub
|
|||||||
description: This section contains an overview of the steps required to prepare your environment so that you can use all of the features of Microsoft Surface Hub.
|
description: This section contains an overview of the steps required to prepare your environment so that you can use all of the features of Microsoft Surface Hub.
|
||||||
ms.assetid: 336A206C-5893-413E-A270-61BFF3DF7DA9
|
ms.assetid: 336A206C-5893-413E-A270-61BFF3DF7DA9
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: prepare environment, features of Surface Hub, create and test device account, check network availability
|
keywords: prepare environment, features of Surface Hub, create and test device account, check network availability
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Create provisioning packages (Surface Hub)
|
|||||||
description: For Windows 10, settings that use the registry or a configuration service provider (CSP) can be configured using provisioning packages.
|
description: For Windows 10, settings that use the registry or a configuration service provider (CSP) can be configured using provisioning packages.
|
||||||
ms.assetid: 8AA25BD4-8A8F-4B95-9268-504A49BA5345
|
ms.assetid: 8AA25BD4-8A8F-4B95-9268-504A49BA5345
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: add certificate, provisioning package
|
keywords: add certificate, provisioning package
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -9,7 +9,7 @@ ms.author: dansimp
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 07/27/2017
|
ms.date: 07/27/2017
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ title: Save your BitLocker key (Surface Hub)
|
|||||||
description: Every Microsoft Surface Hub is automatically set up with BitLocker drive encryption software. Microsoft strongly recommends that you make sure you back up your BitLocker recovery keys.
|
description: Every Microsoft Surface Hub is automatically set up with BitLocker drive encryption software. Microsoft strongly recommends that you make sure you back up your BitLocker recovery keys.
|
||||||
ms.assetid: E11E4AB6-B13E-4ACA-BCE1-4EDC9987E4F2
|
ms.assetid: E11E4AB6-B13E-4ACA-BCE1-4EDC9987E4F2
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: Surface Hub, BitLocker, Bitlocker recovery keys
|
keywords: Surface Hub, BitLocker, Bitlocker recovery keys
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Set up Microsoft Surface Hub
|
|||||||
description: Set up instructions for Surface Hub include a setup worksheet, and a walkthrough of the first-run program.
|
description: Set up instructions for Surface Hub include a setup worksheet, and a walkthrough of the first-run program.
|
||||||
ms.assetid: 4D1722BC-704D-4471-BBBE-D0500B006221
|
ms.assetid: 4D1722BC-704D-4471-BBBE-D0500B006221
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: set up instructions, Surface Hub, setup worksheet, first-run program
|
keywords: set up instructions, Surface Hub, setup worksheet, first-run program
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Setup worksheet (Surface Hub)
|
|||||||
description: When you've finished pre-setup and are ready to start first-time setup for your Microsoft Surface Hub, make sure you have all the information listed in this section.
|
description: When you've finished pre-setup and are ready to start first-time setup for your Microsoft Surface Hub, make sure you have all the information listed in this section.
|
||||||
ms.assetid: AC6F925B-BADE-48F5-8D53-8B6FFF6EE3EB
|
ms.assetid: AC6F925B-BADE-48F5-8D53-8B6FFF6EE3EB
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: Setup worksheet, pre-setup, first-time setup
|
keywords: Setup worksheet, pre-setup, first-time setup
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -9,7 +9,7 @@ ms.author: dansimp
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 07/27/2017
|
ms.date: 07/27/2017
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ title: Top support solutions for Microsoft Surface Hub
|
|||||||
description: Find top solutions for common issues using Surface Hub.
|
description: Find top solutions for common issues using Surface Hub.
|
||||||
ms.assetid: CF58F74D-8077-48C3-981E-FCFDCA34B34A
|
ms.assetid: CF58F74D-8077-48C3-981E-FCFDCA34B34A
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: Troubleshoot common problems, setup issues
|
keywords: Troubleshoot common problems, setup issues
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -8,7 +8,7 @@ ms.author: dansimp
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 08/28/2017
|
ms.date: 08/28/2017
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
localizationpriority: medium
|
localizationpriority: medium
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ ms.author: dansimp
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 08/22/2017
|
ms.date: 08/22/2017
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: Implement Quality of Service on Surface Hub
|
title: Implement Quality of Service on Surface Hub
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
description: Learn how to configure QoS on Surface Hub.
|
description: Learn how to configure QoS on Surface Hub.
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Using the Surface Hub Recovery Tool
|
|||||||
description: How to use the Surface Hub Recovery Tool to re-image the SSD.
|
description: How to use the Surface Hub Recovery Tool to re-image the SSD.
|
||||||
ms.assetid: FDB6182C-1211-4A92-A930-6C106BCD5DC1
|
ms.assetid: FDB6182C-1211-4A92-A930-6C106BCD5DC1
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: manage Surface Hub
|
keywords: manage Surface Hub
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: Surface Hub SSD replacement
|
title: Surface Hub SSD replacement
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
description: Learn how to replace the solid state drive in a Surface Hub.
|
description: Learn how to replace the solid state drive in a Surface Hub.
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: Technical information for 55" Surface Hub
|
title: Technical information for 55" Surface Hub
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
description: Specifications for the 55" Surface Hub
|
description: Specifications for the 55" Surface Hub
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: Technical information for 84" Surface Hub
|
title: Technical information for 84" Surface Hub
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
description: Specifications for the 84" Surface Hub
|
description: Specifications for the 84" Surface Hub
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -9,7 +9,7 @@ ms.author: dansimp
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 11/27/2019
|
ms.date: 11/27/2019
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ ms.author: dansimp
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 01/18/2018
|
ms.date: 01/18/2018
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ title: Troubleshoot Microsoft Surface Hub
|
|||||||
description: Troubleshoot common problems, including setup issues, Exchange ActiveSync errors.
|
description: Troubleshoot common problems, including setup issues, Exchange ActiveSync errors.
|
||||||
ms.assetid: CF58F74D-8077-48C3-981E-FCFDCA34B34A
|
ms.assetid: CF58F74D-8077-48C3-981E-FCFDCA34B34A
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: Troubleshoot common problems, setup issues, Exchange ActiveSync errors
|
keywords: Troubleshoot common problems, setup issues, Exchange ActiveSync errors
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -7,7 +7,7 @@ ms.author: dansimp
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 07/27/2017
|
ms.date: 07/27/2017
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Using a room control system (Surface Hub)
|
|||||||
description: Room control systems can be used with your Microsoft Surface Hub.
|
description: Room control systems can be used with your Microsoft Surface Hub.
|
||||||
ms.assetid: DC365002-6B35-45C5-A2B8-3E1EB0CB8B50
|
ms.assetid: DC365002-6B35-45C5-A2B8-3E1EB0CB8B50
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: room control system, Surface Hub
|
keywords: room control system, Surface Hub
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -8,7 +8,7 @@ ms.author: dansimp
|
|||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 03/18/2019
|
ms.date: 03/18/2019
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ title: Wireless network management (Surface Hub)
|
|||||||
description: Microsoft Surface Hub offers two options for network connectivity to your corporate network and Internet wireless, and wired. While both provide network access, we recommend you use a wired connection.
|
description: Microsoft Surface Hub offers two options for network connectivity to your corporate network and Internet wireless, and wired. While both provide network access, we recommend you use a wired connection.
|
||||||
ms.assetid: D2CFB90B-FBAA-4532-B658-9AA33CAEA31D
|
ms.assetid: D2CFB90B-FBAA-4532-B658-9AA33CAEA31D
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: network connectivity, wired connection
|
keywords: network connectivity, wired connection
|
||||||
ms.prod: surface-hub
|
ms.prod: surface-hub
|
||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
|
@ -3,7 +3,7 @@ title: Advanced UEFI security features for Surface Pro 3 (Surface)
|
|||||||
description: This article describes how to install and configure the v3.11.760.0 UEFI update to enable additional security options for Surface Pro 3 devices.
|
description: This article describes how to install and configure the v3.11.760.0 UEFI update to enable additional security options for Surface Pro 3 devices.
|
||||||
ms.assetid: 90F790C0-E5FC-4482-AD71-60589E3C9C93
|
ms.assetid: 90F790C0-E5FC-4482-AD71-60589E3C9C93
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: security, features, configure, hardware, device, custom, script, update
|
keywords: security, features, configure, hardware, device, custom, script, update
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.prod: w10
|
ms.prod: w10
|
||||||
|
@ -9,7 +9,7 @@ author: coveminer
|
|||||||
ms.author: v-jokai
|
ms.author: v-jokai
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.reviewer: hachidan
|
ms.reviewer: hachidan
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
---
|
---
|
||||||
|
|
||||||
# Surface Asset Tag Tool
|
# Surface Asset Tag Tool
|
||||||
|
@ -7,7 +7,7 @@ ms.pagetype: surface, devices
|
|||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
author: coveminer
|
author: coveminer
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.author: v-jokai
|
ms.author: v-jokai
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: Change history for Surface documentation (Windows 10)
|
title: Change history for Surface documentation (Windows 10)
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
description: This topic lists new and updated topics in the Surface documentation library.
|
description: This topic lists new and updated topics in the Surface documentation library.
|
||||||
ms.prod: w10
|
ms.prod: w10
|
||||||
ms.mktglfcycl: manage
|
ms.mktglfcycl: manage
|
||||||
|
@ -12,7 +12,7 @@ ms.topic: article
|
|||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.audience: itpro
|
ms.audience: itpro
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
---
|
---
|
||||||
|
|
||||||
# Considerations for Surface and Microsoft Endpoint Configuration Manager
|
# Considerations for Surface and Microsoft Endpoint Configuration Manager
|
||||||
|
@ -3,7 +3,7 @@ title: Customize the OOBE for Surface deployments (Surface)
|
|||||||
description: This article will walk you through the process of customizing the Surface out-of-box experience for end users in your organization.
|
description: This article will walk you through the process of customizing the Surface out-of-box experience for end users in your organization.
|
||||||
ms.assetid: F6910315-9FA9-4297-8FA8-2C284A4B1D87
|
ms.assetid: F6910315-9FA9-4297-8FA8-2C284A4B1D87
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: deploy, customize, automate, network, Pen, pair, boot
|
keywords: deploy, customize, automate, network, Pen, pair, boot
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.prod: w10
|
ms.prod: w10
|
||||||
|
@ -12,7 +12,7 @@ ms.topic: article
|
|||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.audience: itpro
|
ms.audience: itpro
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
---
|
---
|
||||||
|
|
||||||
# Deploy Surface app with Microsoft Store for Business and Education
|
# Deploy Surface app with Microsoft Store for Business and Education
|
||||||
|
@ -12,7 +12,7 @@ ms.topic: article
|
|||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.audience: itpro
|
ms.audience: itpro
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
---
|
---
|
||||||
|
|
||||||
# Deploy Windows 10 to Surface devices with Microsoft Deployment Toolkit
|
# Deploy Windows 10 to Surface devices with Microsoft Deployment Toolkit
|
||||||
|
@ -7,7 +7,7 @@ ms.pagetype: surface, devices
|
|||||||
ms.sitesec: library
|
ms.sitesec: library
|
||||||
author: coveminer
|
author: coveminer
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.author: v-jokai
|
ms.author: v-jokai
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
|
@ -3,7 +3,7 @@ title: Enable PEAP, EAP-FAST, and Cisco LEAP on Surface devices (Surface)
|
|||||||
description: Find out how to enable support for PEAP, EAP-FAST, or Cisco LEAP protocols on your Surface device.
|
description: Find out how to enable support for PEAP, EAP-FAST, or Cisco LEAP protocols on your Surface device.
|
||||||
ms.assetid: A281EFA3-1552-467D-8A21-EB151E58856D
|
ms.assetid: A281EFA3-1552-467D-8A21-EB151E58856D
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: network, wireless, device, deploy, authentication, protocol
|
keywords: network, wireless, device, deploy, authentication, protocol
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.prod: w10
|
ms.prod: w10
|
||||||
|
@ -12,7 +12,7 @@ ms.topic: article
|
|||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.audience: itpro
|
ms.audience: itpro
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
---
|
---
|
||||||
|
|
||||||
# Enroll and configure Surface devices with SEMM
|
# Enroll and configure Surface devices with SEMM
|
||||||
|
@ -3,7 +3,7 @@ title: Ethernet adapters and Surface deployment (Surface)
|
|||||||
description: This article provides guidance and answers to help you perform a network deployment to Surface devices.
|
description: This article provides guidance and answers to help you perform a network deployment to Surface devices.
|
||||||
ms.assetid: 5273C59E-6039-4E50-96B3-426BB38A64C0
|
ms.assetid: 5273C59E-6039-4E50-96B3-426BB38A64C0
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: ethernet, deploy, removable, network, connectivity, boot, firmware, device, adapter, PXE boot, USB
|
keywords: ethernet, deploy, removable, network, connectivity, boot, firmware, device, adapter, PXE boot, USB
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.prod: w10
|
ms.prod: w10
|
||||||
|
@ -9,7 +9,7 @@ author: coveminer
|
|||||||
ms.author: v-jokai
|
ms.author: v-jokai
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.audience: itpro
|
ms.audience: itpro
|
||||||
---
|
---
|
||||||
|
@ -8,7 +8,7 @@ author: coveminer
|
|||||||
ms.author: v-jokai
|
ms.author: v-jokai
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.audience: itpro
|
ms.audience: itpro
|
||||||
ms.date: 10/28/2019
|
ms.date: 10/28/2019
|
||||||
|
@ -3,7 +3,7 @@ title: Manage and deploy Surface driver and firmware updates
|
|||||||
description: This article describes the available options to manage and deploy firmware and driver updates for Surface devices.
|
description: This article describes the available options to manage and deploy firmware and driver updates for Surface devices.
|
||||||
ms.assetid: CD1219BA-8EDE-4BC8-BEEF-99B50C211D73
|
ms.assetid: CD1219BA-8EDE-4BC8-BEEF-99B50C211D73
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: laurawi
|
||||||
keywords: Surface, Surface Pro 3, firmware, update, device, manage, deploy, driver, USB
|
keywords: Surface, Surface Pro 3, firmware, update, device, manage, deploy, driver, USB
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
ms.prod: w10
|
ms.prod: w10
|
||||||
|