Skip to content

Commit 5db7f7b

Browse files
committed
Merge branch 'release-intune-2206' of https://github.com/MicrosoftDocs/memdocs-pr into in2205-model-14439211
2 parents 35abc48 + f3dd044 commit 5db7f7b

239 files changed

Lines changed: 8086 additions & 4726 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ _themes/
1616
.openpublishing.build.mdproj
1717
.openpublishing.buildcore.ps1
1818
packages.config
19+
.DS_Store

.openpublishing.redirection.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,6 +1154,10 @@
11541154
"redirect_document_id": false
11551155
},
11561156
{
1157+
"source_path": "windows-365/get-users-started.md",
1158+
"redirect_url":"/windows-365/end-user-access-cloud-pc",
1159+
"redirect_document_id": false
1160+
}, {
11571161
"source_path": "memdocs/intune/remote-actions/remote-assist-mobile-devices.md",
11581162
"redirect_url": "/mem/intune/remote-actions/remote-help",
11591163
"redirect_document_id": false

memdocs/autopilot/add-devices.md

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
---
22
title: Manually register devices with Windows Autopilot
33
description: Learn how to manually add devices to Windows Autopilot.
4-
keywords: mdm, setup, windows, windows 10, oobe, manage, deploy, autopilot, ztd, zero-touch, partner, msfb, intune
54
ms.prod: w10
6-
ms.mktglfcycl: deploy
75
ms.localizationpriority: medium
8-
ms.sitesec: library
9-
ms.pagetype: deploy
10-
audience: itpro
116
author: aczechowski
127
ms.author: aaroncz
138
ms.reviewer: jubaptis
149
manager: dougeby
15-
ms.date: 08/05/2021
10+
ms.date: 06/03/2022
1611
ms.topic: how-to
1712
ms.collection:
1813
- M365-modern-desktop
@@ -78,7 +73,7 @@ Microsoft Endpoint Configuration Manager automatically collects the hardware has
7873

7974
### PowerShell
8075

81-
The hardware hash for an existing device is available through Windows Management Instrumentation (WMI), as long as that device is running a supported version of Windows. You can use a PowerShell script ([Get-WindowsAutoPilotInfo.ps1](https://www.powershellgallery.com/packages/Get-WindowsAutoPilotInfo)) to get a device's hardware hash and serial number. The serial number is useful for quickly seeing which device the hardware hash belongs to.
76+
The hardware hash for an existing device is available through Windows Management Instrumentation (WMI), as long as that device is running a supported version of Windows. You can use a PowerShell script ([Get-WindowsAutopilotInfo.ps1](https://www.powershellgallery.com/packages/Get-WindowsAutopilotInfo)) to get a device's hardware hash and serial number. The serial number is useful for quickly seeing which device the hardware hash belongs to.
8277

8378
To use this script, you can use either of the following methods:
8479

@@ -94,8 +89,8 @@ To install the script directly and capture the hardware hash from the local comp
9489
Set-Location -Path "C:\HWID"
9590
$env:Path += ";C:\Program Files\WindowsPowerShell\Scripts"
9691
Set-ExecutionPolicy -Scope Process -ExecutionPolicy RemoteSigned
97-
Install-Script -Name Get-WindowsAutoPilotInfo
98-
Get-WindowsAutoPilotInfo -OutputFile AutoPilotHWID.csv
92+
Install-Script -Name Get-WindowsAutopilotInfo
93+
Get-WindowsAutopilotInfo -OutputFile AutopilotHWID.csv
9994
```
10095

10196
You can run the commands remotely if both of the following are true:
@@ -109,7 +104,7 @@ To install the script directly and capture the hardware hash from the local comp
109104
PowerShell.exe -ExecutionPolicy Bypass
110105
Install-Script -name Get-WindowsAutopilotInfo -Force
111106
Set-ExecutionPolicy -Scope Process -ExecutionPolicy RemoteSigned
112-
Get-WindowsAutoPilotInfo -Online
107+
Get-WindowsAutopilotInfo -Online
113108
```
114109

115110
3. You're prompted to sign in. An account with the Intune Administrator role is sufficient, and the device hash will then be uploaded automatically.
@@ -123,7 +118,7 @@ To install the script directly and capture the hardware hash from the local comp
123118
> [!NOTE]
124119
> Because Intune offers free (or inexpensive) accounts that lack robust vetting, and because 4K hardware hashes contain sensitive information that only device owners should maintain, we recommend registering devices through Microsoft Endpoint Manager via a 4K hardware hash only for testing or other limited scenarios. In most cases, you should instead use the Microsoft Partner Center for Autopilot device registration.
125120
126-
For more information about running the *Get-WindowsAutoPilotInfo.ps1* script, see the script's help by using `Get-Help Get-WindowsAutoPilotInfo`.
121+
For more information about running the *Get-WindowsAutopilotInfo.ps1* script, see the script's help by using `Get-Help Get-WindowsAutopilotInfo`.
127122

128123
### Diagnostics page hash export
129124

@@ -166,7 +161,8 @@ Keep these other requirements for the CSV file in mind:
166161
- You can use only ANSI-format text files (not Unicode).
167162
- Headers are case-sensitive.
168163

169-
Because of these requirements, editing an Excel file and saving it as .csv will not generate a usable file for importing into the Intune portal.
164+
> [!IMPORTANT]
165+
> Use a plain-text editor with this CSV file, like Notepad. Don't use Microsoft Excel. Because of the requirements, editing an Excel file and saving it as `.csv` won't generate a usable file for importing to Intune.
170166
171167
When you upload a CSV file to assign a user, make sure that you assign valid User Principal Names (UPNs). If you assign an invalid UPN (that is, an incorrect username), your device might be inaccessible until you remove the invalid assignment.
172168

memdocs/autopilot/autopilot-faq.yml

Lines changed: 397 additions & 102 deletions
Large diffs are not rendered by default.

memdocs/autopilot/autopilot-mbr.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,14 +138,14 @@ Repair technicians must sign in to the repaired device to capture the new device
138138

139139
Those repair facilities with access to the OA3 Tool (which is part of the ADK) can use the tool to capture the 4K Hardware Hash (4K HH).
140140

141-
Instead, the [WindowsAutoPilotInfo PowerShell script](https://www.powershellgallery.com/packages/Get-WindowsAutoPilotInfo) can be used to capture the 4K HH.
141+
Instead, the [WindowsAutopilotInfo PowerShell script](https://www.powershellgallery.com/packages/Get-WindowsAutopilotInfo) can be used to capture the 4K HH.
142142

143143
> [!NOTE]
144144
> Other methods in addition to Windows PowerShell are also available to capture the hardware hash. For more information, see [Collect the hardware hash](add-devices.md#collect-the-hardware-hash).
145145
146-
To use the **WindowsAutoPilotInfo** PowerShell script, follow these steps:
146+
To use the **WindowsAutopilotInfo** PowerShell script, follow these steps:
147147

148-
1. Install the script from the [PowerShell Gallery](https://www.powershellgallery.com/packages/Get-WindowsAutoPilotInfo) or from the command line (command-line installation is shown below).
148+
1. Install the script from the [PowerShell Gallery](https://www.powershellgallery.com/packages/Get-WindowsAutopilotInfo) or from the command line (command-line installation is shown below).
149149
2. Navigate to the script directory and run it on the device when the device is either in Full OS or Audit Mode. See the following example.
150150

151151
```powershell
@@ -410,7 +410,6 @@ Assuming the used HDD was previously deregistered (before being used in this rep
410410
We don't recommend any of these scenarios.
411411

412412

413-
<tr><td>A device repaired more than three times<td>No<td>Autopilot isn't supported when a device is repeatedly repaired. Parts NOT replaced become associated with too many parts that have been replaced. This makes it difficult to uniquely identify that device in the future.
414413
<tr><td>Memory replacement<td>Yes<td>Replacing the memory on a damaged device doesn't negatively affect the Autopilot experience on that device. No de/reregistration is needed. The repair technician simply needs to replace the memory.
415414
<tr><td>GPU replacement<td>Yes<td>Replacing the GPU(s) on a damaged device doesn't negatively affect the Autopilot experience on that device. No de/reregistration is needed. The repair technician simply needs to replace the GPU.
416415
</table>

memdocs/autopilot/enrollment-autopilot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ ms.collection:
6565

6666
When creating expressions:
6767

68-
- To create a group that includes all of your Autopilot devices, enter: `(device.devicePhysicalIDs -any (_ -contains "[ZTDId]"))`.
68+
- To create a group that includes all of your Autopilot devices, enter: `(device.devicePhysicalIDs -any (_ -contains "[ZTDID]"))`.
6969
- Intune's group tag field maps to the `OrderID` attribute on Azure AD devices. To create a group that includes all Autopilot devices with a specific group tag (the Azure AD device `OrderID`), enter: `(device.devicePhysicalIds -any (_ -eq "[OrderID]:179887111881"))`.
7070
- To create a group that includes all your Autopilot devices with a specific Purchase Order ID, enter: `(device.devicePhysicalIds -any (_ -eq "[PurchaseOrderId]:76222342342"))`
7171

0 commit comments

Comments
 (0)