Merged PR 14401: Fixing metadata

I know it's a lot of files, but I'm fixing metadata on all my content
This commit is contained in:
Dani Halfin 📬🔨 2019-02-21 13:50:19 +00:00
parent 839587b9f0
commit 7b88c32f0c
138 changed files with 941 additions and 343 deletions

View File

@ -1,19 +1,19 @@
--- ---
title: Rip and Replace title: Rip and Replace
description: Listing of Autopilot scenarios description: Listing of Autopilot scenarios
keywords: mdm, setup, windows, windows 10, oobe, manage, deploy, autopilot, ztd, zero-touch, partner, msfb, intune keywords: mdm, setup, windows, windows 10, oobe, manage, deploy, autopilot, ztd, zero-touch, partner, msfb, intune
ms.prod: w10 ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.localizationpriority: high ms.localizationpriority: high
ms.sitesec: library ms.sitesec: library
ms.pagetype: deploy ms.pagetype: deploy
author: coreyp-at-msft author: coreyp-at-msft
ms.author: coreyp ms.author: coreyp
ms.date: 06/01/2018 ms.date: 06/01/2018
--- ---
# Rip and replace # Rip and replace
**Applies to: Windows 10** **Applies to: Windows 10**
DO NOT PUBLISH. Just a placeholder for now, coming with 1809. DO NOT PUBLISH. Just a placeholder for now, coming with 1809.

View File

@ -1,184 +1,188 @@
--- ---
title: Diagnostic Data Viewer for PowerShell Overview (Windows 10) title: Diagnostic Data Viewer for PowerShell Overview (Windows 10)
description: Use this article to use the Diagnostic Data Viewer for PowerShell to review the diagnostic data sent to Microsoft by your device. description: Use this article to use the Diagnostic Data Viewer for PowerShell to review the diagnostic data sent to Microsoft by your device.
keywords: privacy keywords: privacy
ms.prod: w10 ms.prod: w10
ms.mktglfcycl: manage ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: high ms.localizationpriority: high
author: brianlic-msft audience: ITPro
ms.author: brianlic author: danihalfin
ms.date: 01/17/2018 ms.author: daniha
--- manager: dansimp
ms.collection: M365-security-compliance
# Diagnostic Data Viewer for PowerShell Overview ms.topic: article
ms.date: 01/17/2018
**Applies to** ---
- Windows 10, version 1809 # Diagnostic Data Viewer for PowerShell Overview
- Windows 10, version 1803
- Windows Server, version 1803 **Applies to**
- Windows Server 2019
- Windows 10, version 1809
## Introduction - Windows 10, version 1803
The Diagnostic Data Viewer for PowerShell is a PowerShell module that lets you review the diagnostic data your device is sending to Microsoft, grouping the info into simple categories based on how it's used by Microsoft. - Windows Server, version 1803
- Windows Server 2019
## Requirements
## Introduction
You must have administrative privilege on the device in order to use this PowerShell module. This module requires OS version 1803 and higher. The Diagnostic Data Viewer for PowerShell is a PowerShell module that lets you review the diagnostic data your device is sending to Microsoft, grouping the info into simple categories based on how it's used by Microsoft.
## Install and Use the Diagnostic Data Viewer for PowerShell ## Requirements
You must install the module before you can use the Diagnostic Data Viewer for PowerShell. You must have administrative privilege on the device in order to use this PowerShell module. This module requires OS version 1803 and higher.
### Opening an Elevated PowerShell session ## Install and Use the Diagnostic Data Viewer for PowerShell
Using the Diagnostic Data Viewer for PowerShell requires administrative (elevated) privilege. There are two ways to open an elevated PowerShell prompt. You can use either method. You must install the module before you can use the Diagnostic Data Viewer for PowerShell.
- Go to **Start** > **Windows PowerShell** > **Run as administrator**
- Go to **Start** > **Command prompt** > **Run as administrator**, and run the command `C:\> powershell.exe` ### Opening an Elevated PowerShell session
### Install the Diagnostic Data Viewer for PowerShell Using the Diagnostic Data Viewer for PowerShell requires administrative (elevated) privilege. There are two ways to open an elevated PowerShell prompt. You can use either method.
- Go to **Start** > **Windows PowerShell** > **Run as administrator**
>[!IMPORTANT] - Go to **Start** > **Command prompt** > **Run as administrator**, and run the command `C:\> powershell.exe`
>It is recommended to visit the documentation on [Getting Started](https://docs.microsoft.com/en-us/powershell/gallery/getting-started) with PowerShell Gallery. This page provides more specific details on installing a PowerShell module.
### Install the Diagnostic Data Viewer for PowerShell
To install the newest version of the Diagnostic Data Viewer PowerShell module, run the following command within an elevated PowerShell session:
```powershell >[!IMPORTANT]
PS C:\> Install-Module -Name Microsoft.DiagnosticDataViewer >It is recommended to visit the documentation on [Getting Started](https://docs.microsoft.com/en-us/powershell/gallery/getting-started) with PowerShell Gallery. This page provides more specific details on installing a PowerShell module.
```
To install the newest version of the Diagnostic Data Viewer PowerShell module, run the following command within an elevated PowerShell session:
To see more information about the module, visit [PowerShell Gallery](https://www.powershellgallery.com/packages/Microsoft.DiagnosticDataViewer). ```powershell
PS C:\> Install-Module -Name Microsoft.DiagnosticDataViewer
### Turn on data viewing ```
Before you can use this tool, you must turn on data viewing. Turning on data viewing enables Windows to store a local history of your device's diagnostic data for you to view until you turn it off.
To see more information about the module, visit [PowerShell Gallery](https://www.powershellgallery.com/packages/Microsoft.DiagnosticDataViewer).
Note that this setting does not control whether your device sends diagnostic data. Instead, it controls whether your Windows device saves a local copy of the diagnostic data sent for your viewing.
### Turn on data viewing
**To turn on data viewing through the Settings page** Before you can use this tool, you must turn on data viewing. Turning on data viewing enables Windows to store a local history of your device's diagnostic data for you to view until you turn it off.
1. Go to **Start**, select **Settings** > **Privacy** > **Diagnostics & feedback**.
Note that this setting does not control whether your device sends diagnostic data. Instead, it controls whether your Windows device saves a local copy of the diagnostic data sent for your viewing.
2. Under **Diagnostic data**, turn on the **If data viewing is enabled, you can see your diagnostics data** option.
**To turn on data viewing through the Settings page**
![Location to turn on data viewing](images/ddv-data-viewing.png) 1. Go to **Start**, select **Settings** > **Privacy** > **Diagnostics & feedback**.
**To turn on data viewing through PowerShell** 2. Under **Diagnostic data**, turn on the **If data viewing is enabled, you can see your diagnostics data** option.
Run the following command within an elevated PowerShell session: ![Location to turn on data viewing](images/ddv-data-viewing.png)
```powershell **To turn on data viewing through PowerShell**
PS C:\> Enable-DiagnosticDataViewing
``` Run the following command within an elevated PowerShell session:
Once data viewing is enabled, your Windows machine will begin saving a history of diagnostic data that is sent to Microsoft from this point on. ```powershell
PS C:\> Enable-DiagnosticDataViewing
>[!IMPORTANT] ```
>Turning on data viewing can use up to 1GB (default setting) of disk space on your system drive. We recommend that you turn off data viewing when you're done using the Diagnostic Data Viewer. For info about turning off data viewing, see the [Turn off data viewing](#turn-off-data-viewing) section in this article.
Once data viewing is enabled, your Windows machine will begin saving a history of diagnostic data that is sent to Microsoft from this point on.
### Getting Started with Diagnostic Data Viewer for PowerShell >[!IMPORTANT]
To see how to use the cmdlet, the parameters it accepts, and examples, run the following command from an elevated PowerShell session: >Turning on data viewing can use up to 1GB (default setting) of disk space on your system drive. We recommend that you turn off data viewing when you're done using the Diagnostic Data Viewer. For info about turning off data viewing, see the [Turn off data viewing](#turn-off-data-viewing) section in this article.
```powershell
PS C:\> Get-Help Get-DiagnosticData ### Getting Started with Diagnostic Data Viewer for PowerShell
``` To see how to use the cmdlet, the parameters it accepts, and examples, run the following command from an elevated PowerShell session:
**To Start Viewing Diagnostic Data** ```powershell
PS C:\> Get-Help Get-DiagnosticData
From an elevated PowerShell session, run the following command: ```
```powershell **To Start Viewing Diagnostic Data**
PS C:\> Get-DiagnosticData
``` From an elevated PowerShell session, run the following command:
If the number of events is large, and you'd like to stop the command, enter `Ctrl+C`. ```powershell
PS C:\> Get-DiagnosticData
>[!IMPORTANT] ```
>The above command may produce little to no results if you enabled data viewing recently. It can take several minutes before your Windows device can show diagnostic data it has sent. Use your device as you normally would in the mean time and try again.
If the number of events is large, and you'd like to stop the command, enter `Ctrl+C`.
### Doing more with the Diagnostic Data Viewer for PowerShell
The Diagnostic Data Viewer for PowerShell provides you with the following features to view and filter your device's diagnostic data. You can also use the extensive suite of other PowerShell tools with this module. >[!IMPORTANT]
>The above command may produce little to no results if you enabled data viewing recently. It can take several minutes before your Windows device can show diagnostic data it has sent. Use your device as you normally would in the mean time and try again.
- **View your diagnostic events.** Running `PS C:\> Get-DiagnosticData`, you can review your diagnostic events. These events reflect activities that occurred and were sent to Microsoft.
### Doing more with the Diagnostic Data Viewer for PowerShell
Each event is displayed as a PowerShell Object. By default each event shows the event name, the time when it was seen by your Windows device, whether the event is [Basic](https://docs.microsoft.com/en-us/windows/privacy/configure-windows-diagnostic-data-in-your-organization), its [diagnostic event category](#view-diagnostic-event-categories), and a detailed JSON view of the information it contains, which shows the event exactly as it was when sent to Microsoft. Microsoft uses this info to continually improve the Windows operating system. The Diagnostic Data Viewer for PowerShell provides you with the following features to view and filter your device's diagnostic data. You can also use the extensive suite of other PowerShell tools with this module.
- **View Diagnostic event categories.** Each event shows the diagnostic event categories that it belongs to. These categories define how events are used by Microsoft. The categories are shown as numeric identifiers. For more information about these categories, see [Windows Diagnostic Data](https://docs.microsoft.com/en-us/windows/privacy/windows-diagnostic-data). - **View your diagnostic events.** Running `PS C:\> Get-DiagnosticData`, you can review your diagnostic events. These events reflect activities that occurred and were sent to Microsoft.
To view the diagnostic category represented by each numeric identifier and what the category means, you can run the command: Each event is displayed as a PowerShell Object. By default each event shows the event name, the time when it was seen by your Windows device, whether the event is [Basic](https://docs.microsoft.com/en-us/windows/privacy/configure-windows-diagnostic-data-in-your-organization), its [diagnostic event category](#view-diagnostic-event-categories), and a detailed JSON view of the information it contains, which shows the event exactly as it was when sent to Microsoft. Microsoft uses this info to continually improve the Windows operating system.
```powershell - **View Diagnostic event categories.** Each event shows the diagnostic event categories that it belongs to. These categories define how events are used by Microsoft. The categories are shown as numeric identifiers. For more information about these categories, see [Windows Diagnostic Data](https://docs.microsoft.com/en-us/windows/privacy/windows-diagnostic-data).
PS C:\> Get-DiagnosticDataTypes
``` To view the diagnostic category represented by each numeric identifier and what the category means, you can run the command:
- **Filter events by when they were sent.** You can view events within specified time ranges by specifying a start time and end time of each command. For example, to see all diagnostic data sent between 12 and 6 hours ago, run the following command. Note that data is shown in order of oldest first. ```powershell
```powershell PS C:\> Get-DiagnosticDataTypes
PS C:\> Get-DiagnosticData -StartTime (Get-Date).AddHours(-12) -EndTime (Get-Date).AddHours(-6) ```
```
- **Filter events by when they were sent.** You can view events within specified time ranges by specifying a start time and end time of each command. For example, to see all diagnostic data sent between 12 and 6 hours ago, run the following command. Note that data is shown in order of oldest first.
- **Export the results of each command.** You can export the results of each command to a separate file such as a csv by using pipe `|`. For example, ```powershell
PS C:\> Get-DiagnosticData -StartTime (Get-Date).AddHours(-12) -EndTime (Get-Date).AddHours(-6)
```powershell ```
PS C:\> Get-DiagnosticData | Export-Csv 'mydata.csv'
``` - **Export the results of each command.** You can export the results of each command to a separate file such as a csv by using pipe `|`. For example,
## Turn off data viewing ```powershell
When you're done reviewing your diagnostic data, we recommend turning off data viewing to prevent using up more memory. Turning off data viewing stops Windows from saving a history of your diagnostic data and clears the existing history of diagnostic data from your device. PS C:\> Get-DiagnosticData | Export-Csv 'mydata.csv'
```
**To turn off data viewing through the Settings page**
1. Go to **Start**, select **Settings** > **Privacy** > **Diagnostics & feedback**. ## Turn off data viewing
When you're done reviewing your diagnostic data, we recommend turning off data viewing to prevent using up more memory. Turning off data viewing stops Windows from saving a history of your diagnostic data and clears the existing history of diagnostic data from your device.
2. Under **Diagnostic data**, turn off the **If data viewing is enabled, you can see your diagnostics data** option.
**To turn off data viewing through the Settings page**
![Location to turn off data viewing](images/ddv-settings-off.png) 1. Go to **Start**, select **Settings** > **Privacy** > **Diagnostics & feedback**.
**To turn off data viewing through PowerShell** 2. Under **Diagnostic data**, turn off the **If data viewing is enabled, you can see your diagnostics data** option.
Within an elevated PowerShell session, run the following command: ![Location to turn off data viewing](images/ddv-settings-off.png)
```powershell **To turn off data viewing through PowerShell**
PS C:\> Disable-DiagnosticDataViewing
``` Within an elevated PowerShell session, run the following command:
## Modifying the size of your data history ```powershell
By default, the tool will show you up to 1GB or 30 days of data (whichever comes first). Once either the time or space limit is reached, the data is incrementally dropped with the oldest data points dropped first. PS C:\> Disable-DiagnosticDataViewing
```
**Modify the size of your data history**
## Modifying the size of your data history
>[!IMPORTANT] By default, the tool will show you up to 1GB or 30 days of data (whichever comes first). Once either the time or space limit is reached, the data is incrementally dropped with the oldest data points dropped first.
>Modifying the maximum amount of diagnostic data viewable by the tool may come with performance impacts to your machine.
**Modify the size of your data history**
>[!IMPORTANT]
>If you modify the maximum data history size from a larger value to a lower value, you must turn off data viewing and turn it back on in order to reclaim disk space. >[!IMPORTANT]
>Modifying the maximum amount of diagnostic data viewable by the tool may come with performance impacts to your machine.
You can change the maximum data history size (in megabytes) that you can view. For example, to set the maximum data history size to 2048MB (2GB), you can run the following command.
>[!IMPORTANT]
```powershell >If you modify the maximum data history size from a larger value to a lower value, you must turn off data viewing and turn it back on in order to reclaim disk space.
PS C:\> Set-DiagnosticStoreCapacity -Size 2048
``` You can change the maximum data history size (in megabytes) that you can view. For example, to set the maximum data history size to 2048MB (2GB), you can run the following command.
You can change the maximum data history time (in hours) that you can view. For example, to set the maximum data history time to 24 hours, you can run the following command. ```powershell
PS C:\> Set-DiagnosticStoreCapacity -Size 2048
```powershell ```
PS C:\> Set-DiagnosticStoreCapacity -Time 24
``` You can change the maximum data history time (in hours) that you can view. For example, to set the maximum data history time to 24 hours, you can run the following command.
>[!IMPORTANT] ```powershell
>You may need to restart your machine for the new settings to take effect. PS C:\> Set-DiagnosticStoreCapacity -Time 24
```
>[!IMPORTANT]
>If you have the [Diagnostic Data Viewer](diagnostic-data-viewer-overview.md) store app installed on the same device, modifications to the size of your data history through the PowerShell module will also be reflected in the app. >[!IMPORTANT]
>You may need to restart your machine for the new settings to take effect.
**Reset the size of your data history**
>[!IMPORTANT]
To reset the maximum data history size back to its original 1GB default value, run the following command in an elevated PowerShell session: >If you have the [Diagnostic Data Viewer](diagnostic-data-viewer-overview.md) store app installed on the same device, modifications to the size of your data history through the PowerShell module will also be reflected in the app.
```powershell **Reset the size of your data history**
PS C:\> Set-DiagnosticStoreCapacity -Size 1024 -Time 720
``` To reset the maximum data history size back to its original 1GB default value, run the following command in an elevated PowerShell session:
When resetting the size of your data history to a lower value, be sure to turn off data viewing and turn it back on in order to reclaim disk space. ```powershell
PS C:\> Set-DiagnosticStoreCapacity -Size 1024 -Time 720
## Related Links ```
- [Module in PowerShell Gallery](https://www.powershellgallery.com/packages/Microsoft.DiagnosticDataViewer)
When resetting the size of your data history to a lower value, be sure to turn off data viewing and turn it back on in order to reclaim disk space.
## Related Links
- [Module in PowerShell Gallery](https://www.powershellgallery.com/packages/Microsoft.DiagnosticDataViewer)
- [Documentation for Diagnostic Data Viewer for PowerShell](https://docs.microsoft.com/en-us/powershell/module/microsoft.diagnosticdataviewer/?view=win10-ps) - [Documentation for Diagnostic Data Viewer for PowerShell](https://docs.microsoft.com/en-us/powershell/module/microsoft.diagnosticdataviewer/?view=win10-ps)

View File

@ -7,8 +7,12 @@ ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
localizationpriority: high localizationpriority: high
audience: ITPro
author: brianlic-msft author: brianlic-msft
ms.author: brianlic ms.author: brianlic
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 02/15/2019 ms.date: 02/15/2019
--- ---

View File

@ -7,8 +7,12 @@ ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
localizationpriority: high localizationpriority: high
audience: ITPro
author: brianlic-msft author: brianlic-msft
ms.author: brianlic ms.author: brianlic
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 02/15/2019 ms.date: 02/15/2019
--- ---

View File

@ -7,8 +7,12 @@ ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
localizationpriority: high localizationpriority: high
audience: ITPro
author: brianlic-msft author: brianlic-msft
ms.author: brianlic ms.author: brianlic
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 02/15/2019 ms.date: 02/15/2019
--- ---

View File

@ -7,8 +7,12 @@ ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
localizationpriority: high localizationpriority: high
audience: ITPro
author: brianlic-msft author: brianlic-msft
ms.author: brianlic ms.author: brianlic
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 02/15/2019 ms.date: 02/15/2019
--- ---

View File

@ -7,7 +7,12 @@ ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: high ms.localizationpriority: high
author: brianlic-msft audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 04/04/2018 ms.date: 04/04/2018
--- ---

View File

@ -7,8 +7,12 @@ ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: high ms.localizationpriority: high
author: brianlic-msft audience: ITPro
ms.author: brianlic author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 01/17/2018 ms.date: 01/17/2018
--- ---

View File

@ -7,9 +7,13 @@ ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: high ms.localizationpriority: high
ms.date: 11/9/2018 audience: ITPro
author: danihalfin author: danihalfin
ms.author: daniha ms.author: daniha
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 11/9/2018
--- ---

View File

@ -7,8 +7,12 @@ ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: high ms.localizationpriority: high
audience: ITPro
author: danihalfin author: danihalfin
ms.author: daniha ms.author: daniha
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 05/11/2018 ms.date: 05/11/2018
--- ---
# Windows and the GDPR: Information for IT Administrators and Decision Makers # Windows and the GDPR: Information for IT Administrators and Decision Makers

View File

@ -7,8 +7,12 @@ ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: high ms.localizationpriority: high
audience: ITPro
author: pwiglemsft author: pwiglemsft
ms.author: pwigle ms.author: pwigle
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 09/25/2017 ms.date: 09/25/2017
--- ---

View File

@ -22,7 +22,13 @@ metadata:
ms.date: 04/25/2018 ms.date: 04/25/2018
ms.topic: article ms.topic: conceptual
audience: ITPro
manager: dansimp
ms.collection: M365-security-compliance
ms.devlang: na ms.devlang: na

View File

@ -7,8 +7,12 @@ ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: high ms.localizationpriority: high
audience: ITPro
author: danihalfin author: danihalfin
ms.author: daniha ms.author: daniha
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 11/16/2018 ms.date: 11/16/2018
robots: noindex,nofollow robots: noindex,nofollow
--- ---

View File

@ -7,8 +7,12 @@ ms.prod: w10
ms.mktglfcycl: manage ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.localizationpriority: medium ms.localizationpriority: medium
audience: ITPro
author: danihalfin author: danihalfin
ms.author: daniha ms.author: daniha
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 06/05/2018 ms.date: 06/05/2018
--- ---

View File

@ -6,8 +6,12 @@ ms.prod: w10
ms.mktglfcycl: manage ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.localizationpriority: high ms.localizationpriority: high
audience: ITPro
author: danihalfin author: danihalfin
ms.author: daniha ms.author: daniha
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 6/26/2018 ms.date: 6/26/2018
--- ---
# Manage connection endpoints for Windows 10, version 1709 # Manage connection endpoints for Windows 10, version 1709

View File

@ -6,8 +6,12 @@ ms.prod: w10
ms.mktglfcycl: manage ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.localizationpriority: high ms.localizationpriority: high
audience: ITPro
author: danihalfin author: danihalfin
ms.author: daniha ms.author: daniha
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 6/26/2018 ms.date: 6/26/2018
--- ---
# Manage connection endpoints for Windows 10, version 1803 # Manage connection endpoints for Windows 10, version 1803

View File

@ -6,8 +6,12 @@ ms.prod: w10
ms.mktglfcycl: manage ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.localizationpriority: high ms.localizationpriority: high
audience: ITPro
author: danihalfin author: danihalfin
ms.author: daniha ms.author: daniha
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 6/26/2018 ms.date: 6/26/2018
--- ---
# Manage connection endpoints for Windows 10, version 1809 # Manage connection endpoints for Windows 10, version 1809

View File

@ -6,8 +6,12 @@ ms.prod: w10
ms.mktglfcycl: manage ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.localizationpriority: high ms.localizationpriority: high
author: eross-msft audience: ITPro
ms.author: lizross author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 11/28/2017 ms.date: 11/28/2017
--- ---

View File

@ -6,8 +6,12 @@ ms.prod: w10
ms.mktglfcycl: manage ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.localizationpriority: high ms.localizationpriority: high
author: brianlic-msft audience: ITPro
ms.author: brianlic author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 03/13/2018 ms.date: 03/13/2018
--- ---

View File

@ -6,8 +6,12 @@ ms.prod: w10
ms.mktglfcycl: manage ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.localizationpriority: high ms.localizationpriority: high
audience: ITPro
author: danihalfin author: danihalfin
ms.author: daniha ms.author: daniha
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 6/26/2018 ms.date: 6/26/2018
--- ---
# Windows 10, version 1709, connection endpoints for non-Enterprise editions # Windows 10, version 1709, connection endpoints for non-Enterprise editions

View File

@ -6,8 +6,12 @@ ms.prod: w10
ms.mktglfcycl: manage ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.localizationpriority: high ms.localizationpriority: high
audience: ITPro
author: danihalfin author: danihalfin
ms.author: daniha ms.author: daniha
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 6/26/2018 ms.date: 6/26/2018
--- ---
# Windows 10, version 1803, connection endpoints for non-Enterprise editions # Windows 10, version 1803, connection endpoints for non-Enterprise editions

View File

@ -6,8 +6,12 @@ ms.prod: w10
ms.mktglfcycl: manage ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.localizationpriority: high ms.localizationpriority: high
audience: ITPro
author: danihalfin author: danihalfin
ms.author: daniha ms.author: daniha
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 6/26/2018 ms.date: 6/26/2018
--- ---
# Windows 10, version 1809, connection endpoints for non-Enterprise editions # Windows 10, version 1809, connection endpoints for non-Enterprise editions

View File

@ -7,8 +7,12 @@ ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: high ms.localizationpriority: high
audience: ITPro
author: danihalfin author: danihalfin
ms.author: daniha ms.author: daniha
manager: dansimp
ms.collection: M365-security-compliance
ms.topic: article
ms.date: 05/11/2018 ms.date: 05/11/2018
--- ---
# Windows 10 personal data services configuration # Windows 10 personal data services configuration

View File

@ -5,6 +5,12 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 07/18/2017 ms.date: 07/18/2017
--- ---

View File

@ -5,6 +5,12 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 04/19/2017 ms.date: 04/19/2017
--- ---

View File

@ -5,6 +5,12 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 04/19/2017 ms.date: 04/19/2017
--- ---

View File

@ -5,6 +5,12 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 04/19/2017 ms.date: 04/19/2017
--- ---

View File

@ -5,6 +5,12 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 12/10/2018 ms.date: 12/10/2018
--- ---

View File

@ -5,6 +5,12 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 10/13/2017 ms.date: 10/13/2017
--- ---

View File

@ -5,6 +5,12 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 04/19/2017 ms.date: 04/19/2017
--- ---

View File

@ -5,6 +5,12 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 04/19/2017 ms.date: 04/19/2017
--- ---

View File

@ -5,6 +5,12 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 04/19/2017 ms.date: 04/19/2017
--- ---

View File

@ -5,6 +5,12 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 04/19/2017 ms.date: 04/19/2017
--- ---

View File

@ -5,7 +5,12 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
author: brianlic-msft audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 08/11/2017 ms.date: 08/11/2017
--- ---

View File

@ -7,7 +7,12 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
author: jdeckerms audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.localizationpriority: medium ms.localizationpriority: medium
ms.date: 07/27/2017 ms.date: 07/27/2017
--- ---

View File

@ -6,7 +6,12 @@ ms.mktglfcycl: explore
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: medium ms.localizationpriority: medium
author: brianlic-msft audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 08/17/2017 ms.date: 08/17/2017
--- ---

View File

@ -6,7 +6,12 @@ ms.mktglfcycl: explore
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: medium ms.localizationpriority: medium
author: brianlic-msft audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 08/31/2017 ms.date: 08/31/2017
--- ---

View File

@ -6,7 +6,12 @@ ms.mktglfcycl: explore
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: medium ms.localizationpriority: medium
author: brianlic-msft audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 08/17/2017 ms.date: 08/17/2017
--- ---

View File

@ -6,7 +6,12 @@ ms.mktglfcycl: explore
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: medium ms.localizationpriority: medium
author: brianlic-msft audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 08/17/2017 ms.date: 08/17/2017
--- ---

View File

@ -6,7 +6,12 @@ ms.mktglfcycl: explore
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: medium ms.localizationpriority: medium
author: brianlic-msft audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 09/04/2018 ms.date: 09/04/2018
--- ---

View File

@ -6,7 +6,12 @@ ms.mktglfcycl: explore
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: medium ms.localizationpriority: medium
author: brianlic-msft audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 08/17/2017 ms.date: 08/17/2017
--- ---

View File

@ -6,7 +6,12 @@ ms.mktglfcycl: explore
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: medium ms.localizationpriority: medium
author: brianlic-msft audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 08/17/2017 ms.date: 08/17/2017
--- ---

View File

@ -6,7 +6,12 @@ ms.mktglfcycl: explore
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: medium ms.localizationpriority: medium
author: brianlic-msft audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 01/12/2018 ms.date: 01/12/2018
--- ---

View File

@ -6,7 +6,12 @@ ms.mktglfcycl: explore
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: medium ms.localizationpriority: medium
author: brianlic-msft audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 08/17/2017 ms.date: 08/17/2017
--- ---

View File

@ -7,7 +7,12 @@ ms.mktglfcycl: explore
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
ms.localizationpriority: medium ms.localizationpriority: medium
author: brianlic-msft audience: ITPro
author: danihalfin
ms.author: daniha
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.date: 08/17/2017 ms.date: 08/17/2017
--- ---

View File

@ -1,10 +1,14 @@
--- ---
title: Enterprise Certificate Pinning
ms.mktglfcycl: manage ms.mktglfcycl: manage
ms.sitesec: library ms.sitesec: library
ms.author: mstephens
author: MikeStephens-MS
description: Enterprise certificate pinning is a Windows feature for remembering, or “pinning” a root, issuing certificate authority, or end entity certificate to a given domain name. description: Enterprise certificate pinning is a Windows feature for remembering, or “pinning” a root, issuing certificate authority, or end entity certificate to a given domain name.
manager: alanth audience: ITPro
author: MikeStephens-MS
ms.author: mstephens
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
ms.prod: w10 ms.prod: w10
ms.technology: windows ms.technology: windows
ms.sitesec: library ms.sitesec: library

View File

@ -5,9 +5,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: aabhathipsay author: aabhathipsay
ms.author: aathipsa ms.author: aathipsa
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 02/15/2019 ms.date: 02/15/2019
--- ---
# WebAuthn APIs for password-less authentication on Windows 10 # WebAuthn APIs for password-less authentication on Windows 10

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 03/20/2018 ms.date: 03/20/2018
--- ---
# Multifactor Unlock # Multifactor Unlock

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/20/2018 ms.date: 08/20/2018
--- ---
# Planning an adequate number of Windows Server 2016 Domain Controllers for Windows Hello for Business deployments # Planning an adequate number of Windows Server 2016 Domain Controllers for Windows Hello for Business deployments

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
author: DaniHalfin audience: ITPro
ms.localizationpriority: medium author: danihalfin
ms.author: daniha ms.author: danihalf
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 07/27/2017 ms.date: 07/27/2017
--- ---
# Windows Hello and password changes # Windows Hello and password changes

View File

@ -7,9 +7,13 @@ ms.prod: w10
ms.mktglfcycl: explore ms.mktglfcycl: explore
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Prepare and Deploy Windows Server 2016 Active Directory Federation Services # Prepare and Deploy Windows Server 2016 Active Directory Federation Services

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Configure or Deploy Multifactor Authentication Services # Configure or Deploy Multifactor Authentication Services

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
ms.localizationpriority: medium audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/20/2018 ms.date: 08/20/2018
--- ---
# Configure Windows Hello for Business Policy settings # Configure Windows Hello for Business Policy settings

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
ms.localizationpriority: medium audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Validate Active Directory prerequisites # Validate Active Directory prerequisites

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Validate and Deploy Multifactor Authentication Services (MFA) # Validate and Deploy Multifactor Authentication Services (MFA)

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Validate and Configure Public Key Infrastructure # Validate and Configure Public Key Infrastructure

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
ms.localizationpriority: medium audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# On Premises Certificate Trust Deployment # On Premises Certificate Trust Deployment
@ -26,16 +30,4 @@ Below, you can find all the information you will need to deploy Windows Hello fo
2. [Validate and Configure Public Key Infrastructure](hello-cert-trust-validate-pki.md) 2. [Validate and Configure Public Key Infrastructure](hello-cert-trust-validate-pki.md)
3. [Prepare and Deploy Windows Server 2016 Active Directory Federation Services](hello-cert-trust-adfs.md) 3. [Prepare and Deploy Windows Server 2016 Active Directory Federation Services](hello-cert-trust-adfs.md)
4. [Validate and Deploy Multifactor Authentication Services (MFA)](hello-cert-trust-validate-deploy-mfa.md) 4. [Validate and Deploy Multifactor Authentication Services (MFA)](hello-cert-trust-validate-deploy-mfa.md)
5. [Configure Windows Hello for Business Policy settings](hello-cert-trust-policy-settings.md) 5. [Configure Windows Hello for Business Policy settings](hello-cert-trust-policy-settings.md)

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/29/2018 ms.date: 08/29/2018
--- ---
# Windows Hello for Business Deployment Guide # Windows Hello for Business Deployment Guide

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/20/2018 ms.date: 08/20/2018
--- ---
# On Premises Key Trust Deployment # On Premises Key Trust Deployment

View File

@ -7,9 +7,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
author: DaniHalfin audience: ITPro
ms.localizationpriority: medium author: danihalfin
ms.author: daniha ms.author: danihalf
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: troubleshooting
localizationpriority: medium
ms.date: 05/05/2018 ms.date: 05/05/2018
--- ---

View File

@ -7,9 +7,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
author: DaniHalfin audience: ITPro
ms.localizationpriority: medium author: danihalfin
ms.author: daniha ms.author: danihalf
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 07/27/2017 ms.date: 07/27/2017
--- ---

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Windows Hello for Business Frequently Ask Questions # Windows Hello for Business Frequently Ask Questions

View File

@ -7,9 +7,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 05/05/2018 ms.date: 05/05/2018
--- ---
# Windows Hello for Business Features # Windows Hello for Business Features

View File

@ -5,9 +5,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Windows Hello for Business and Authentication # Windows Hello for Business and Authentication

View File

@ -5,9 +5,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Windows Hello for Business and Device Registration # Windows Hello for Business and Device Registration

View File

@ -5,9 +5,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Windows Hello for Business Provisioning # Windows Hello for Business Provisioning

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Technical Deep Dive # Technical Deep Dive

View File

@ -5,9 +5,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 10/08/2018 ms.date: 10/08/2018
--- ---
# Technology and Terms # Technology and Terms

View File

@ -5,9 +5,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security ms.pagetype: security
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 05/05/2018 ms.date: 05/05/2018
--- ---
# How Windows Hello for Business works # How Windows Hello for Business works

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Configure Azure AD joined devices for On-premises Single-Sign On using Windows Hello for Business # Configure Azure AD joined devices for On-premises Single-Sign On using Windows Hello for Business

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Using Certificates for AADJ On-premises Single-sign On # Using Certificates for AADJ On-premises Single-sign On

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Azure AD Join Single Sign-on Deployment Guides # Azure AD Join Single Sign-on Deployment Guides

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Windows Hello for Business Certificate Trust New Installation # Windows Hello for Business Certificate Trust New Installation

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/18/2018 ms.date: 08/18/2018
--- ---
# Configure Device Registration for Hybrid Windows Hello for Business # Configure Device Registration for Hybrid Windows Hello for Business

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Hybrid Windows Hello for Business Prerequisites # Hybrid Windows Hello for Business Prerequisites

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 09/08/2017 ms.date: 09/08/2017
--- ---
# Hybrid Azure AD joined Certificate Trust Deployment # Hybrid Azure AD joined Certificate Trust Deployment

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Hybrid Windows Hello for Business Provisioning # Hybrid Windows Hello for Business Provisioning

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
ms.localizationpriority: medium audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Configuring Windows Hello for Business: Active Directory # Configuring Windows Hello for Business: Active Directory

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
ms.localizationpriority: medium audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/20/2018 ms.date: 08/20/2018
--- ---
# Configure Windows Hello for Business: Active Directory Federation Services # Configure Windows Hello for Business: Active Directory Federation Services

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
ms.localizationpriority: medium audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 10/23/2017 ms.date: 10/23/2017
--- ---
# Configure Hybrid Windows Hello for Business: Directory Synchronization # Configure Hybrid Windows Hello for Business: Directory Synchronization

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
ms.localizationpriority: medium audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
ms.localizationpriority: medium audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Configure Hybrid Windows Hello for Business: Group Policy # Configure Hybrid Windows Hello for Business: Group Policy

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
ms.localizationpriority: medium audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Configure Windows Hello for Business # Configure Windows Hello for Business

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Windows Hello for Business Key Trust New Installation # Windows Hello for Business Key Trust New Installation

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Configure Device Registration for Hybrid key trust Windows Hello for Business # Configure Device Registration for Hybrid key trust Windows Hello for Business

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Configure Directory Synchronization for Hybrid key trust Windows Hello for Business # Configure Directory Synchronization for Hybrid key trust Windows Hello for Business

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/20/2018 ms.date: 08/20/2018
--- ---
# Hybrid Key trust Windows Hello for Business Prerequisites # Hybrid Key trust Windows Hello for Business Prerequisites

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/20/2018 ms.date: 08/20/2018
--- ---
# Hybrid Azure AD joined Key Trust Deployment # Hybrid Azure AD joined Key Trust Deployment

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/20/2018 ms.date: 08/20/2018
--- ---
# Hybrid Windows Hello for Business Provisioning # Hybrid Windows Hello for Business Provisioning

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
ms.localizationpriority: medium audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/20/2018 ms.date: 08/20/2018
--- ---
# Configuring Hybrid key trust Windows Hello for Business: Active Directory # Configuring Hybrid key trust Windows Hello for Business: Active Directory

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
ms.localizationpriority: medium audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Configure Hybrid Windows Hello for Business: Directory Synchronization # Configure Hybrid Windows Hello for Business: Directory Synchronization

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
ms.localizationpriority: medium audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
localizationpriority: high audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/20/2018 ms.date: 08/20/2018
--- ---
# Configure Hybrid Windows Hello for Business: Group Policy # Configure Hybrid Windows Hello for Business: Group Policy

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
ms.localizationpriority: medium audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Configure Hybrid Windows Hello for Business key trust settings # Configure Hybrid Windows Hello for Business key trust settings

View File

@ -7,9 +7,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
localizationpriority: high manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 05/05/2018 ms.date: 05/05/2018
--- ---
# Windows Hello for Business # Windows Hello for Business

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Prepare and Deploy Windows Server 2016 Active Directory Federation Services # Prepare and Deploy Windows Server 2016 Active Directory Federation Services

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Configure or Deploy Multifactor Authentication Services # Configure or Deploy Multifactor Authentication Services

View File

@ -6,9 +6,13 @@ ms.prod: w10
ms.mktglfcycl: deploy ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
ms.localizationpriority: medium manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Configure Windows Hello for Business Policy settings # Configure Windows Hello for Business Policy settings

View File

@ -7,9 +7,13 @@ ms.mktglfcycl: deploy
ms.sitesec: library ms.sitesec: library
ms.pagetype: security, mobile ms.pagetype: security, mobile
author: DaniHalfin author: DaniHalfin
ms.localizationpriority: medium audience: ITPro
author: mikestephens-MS author: mikestephens-MS
ms.author: mstephen ms.author: mstephen
manager: dansimp
ms.collection: M365-identity-device-management
ms.topic: article
localizationpriority: medium
ms.date: 08/19/2018 ms.date: 08/19/2018
--- ---
# Validate Active Directory prerequisites # Validate Active Directory prerequisites

Some files were not shown because too many files have changed in this diff Show More