Skip to content

Commit 5e31c0c

Browse files
committed
Changes reverted as evalcenter is up again
2 parents e92c849 + 8b4ccbb commit 5e31c0c

290 files changed

Lines changed: 8843 additions & 5275 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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "memdocs/intune/fundamentals/end-user-mam-apps-android.md",
5+
"redirect_url": "/mem/intune/user-help/use-managed-apps-on-your-device-android",
6+
"redirect_document_id": true
7+
},
38
{
49
"source_path": "memdocs/intune/configuration/vpn-settings-windows-phone-8-1.md",
510
"redirect_url": "https://support.microsoft.com/windows/windows-phone-8-1-end-of-support-faq-7f1ef0aa-0aaf-0747-3724-5c44456778a3",
@@ -1154,6 +1159,10 @@
11541159
"redirect_document_id": false
11551160
},
11561161
{
1162+
"source_path": "windows-365/get-users-started.md",
1163+
"redirect_url":"/windows-365/end-user-access-cloud-pc",
1164+
"redirect_document_id": false
1165+
}, {
11571166
"source_path": "memdocs/intune/remote-actions/remote-assist-mobile-devices.md",
11581167
"redirect_url": "/mem/intune/remote-actions/remote-help",
11591168
"redirect_document_id": false

memdocs/autopilot/add-devices.md

Lines changed: 11 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
@@ -48,6 +43,9 @@ This article provides step-by-step guidance for manual registration. For more in
4843

4944
Device enrollment requires *Intune Administrator* or *Policy and Profile Manager* permissions. You can also create a custom Autopilot device manager role by using [role-based access control](../intune/fundamentals/role-based-access-control.md). Autopilot device management requires only that you enable all permissions under **Enrollment programs**, except for the four token management options.
5045

46+
> [!NOTE]
47+
> In both Intune Administrator and role-based access control methods, the administrative user also requires consent to use the Microsoft Intune PowerShell enterprise application.
48+
5149
## Collect the hardware hash
5250

5351
The following methods are available to harvest a hardware hash from existing devices:
@@ -78,7 +76,7 @@ Microsoft Endpoint Configuration Manager automatically collects the hardware has
7876

7977
### PowerShell
8078

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.
79+
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.
8280

8381
To use this script, you can use either of the following methods:
8482

@@ -94,8 +92,8 @@ To install the script directly and capture the hardware hash from the local comp
9492
Set-Location -Path "C:\HWID"
9593
$env:Path += ";C:\Program Files\WindowsPowerShell\Scripts"
9694
Set-ExecutionPolicy -Scope Process -ExecutionPolicy RemoteSigned
97-
Install-Script -Name Get-WindowsAutoPilotInfo
98-
Get-WindowsAutoPilotInfo -OutputFile AutoPilotHWID.csv
95+
Install-Script -Name Get-WindowsAutopilotInfo
96+
Get-WindowsAutopilotInfo -OutputFile AutopilotHWID.csv
9997
```
10098

10199
You can run the commands remotely if both of the following are true:
@@ -109,7 +107,7 @@ To install the script directly and capture the hardware hash from the local comp
109107
PowerShell.exe -ExecutionPolicy Bypass
110108
Install-Script -name Get-WindowsAutopilotInfo -Force
111109
Set-ExecutionPolicy -Scope Process -ExecutionPolicy RemoteSigned
112-
Get-WindowsAutoPilotInfo -Online
110+
Get-WindowsAutopilotInfo -Online
113111
```
114112

115113
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 +121,7 @@ To install the script directly and capture the hardware hash from the local comp
123121
> [!NOTE]
124122
> 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.
125123
126-
For more information about running the *Get-WindowsAutoPilotInfo.ps1* script, see the script's help by using `Get-Help Get-WindowsAutoPilotInfo`.
124+
For more information about running the *Get-WindowsAutopilotInfo.ps1* script, see the script's help by using `Get-Help Get-WindowsAutopilotInfo`.
127125

128126
### Diagnostics page hash export
129127

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

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.
167+
> [!IMPORTANT]
168+
> 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.
170169
171170
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.
172171

0 commit comments

Comments
 (0)