Uploading the hardware ID to Windows Autopilot
The Windows Autopilot hardware hash is a 4K string retrieved from the Windows 10 or Windows 11 OS on the device by running Get-WindowsAutoPilotInfo.ps1
from a PowerShell prompt:
New-Item -Type Directory -Path "C:\Temp\Autopilot"
Set-Location -Path "C:\Temp\Autopilot"
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Unrestricted
Install-Script -Name Get-WindowsAutoPilotInfo
Get-WindowsAutoPilotInfo.ps1 -OutputFile AutoPilotHWID.csv
Windows Autopilot device registration can be done within your organization manually, for testing, or for devices your organization already owns.
It is used to collect the hardware identity of devices (hardware hashes) and upload this information in a Comma-Separated Values (CSV) file to the Windows Autopilot service from the Microsoft Intune admin center, and also to capture the hardware hash for manual registration, which requires booting the device into Windows 10 or Windows...