Before a new or repurposed Windows device can be deployed using Windows Autopilot, its unique hardware identifier (hash) must be registered in the Intune. This document outlines the required PowerShell steps to securely capture and upload these device hashes. It covers the manual export method (CSV) to ensure all devices are properly staged for zero-touch deployment.
FlashDrive
Internet Connection
1. Insert the Flash Drive into the device.
Set-ExecutionPolicy Bypass -Scope Process -Force
Install-Script -Name Get-WindowsAutopilotInfo -Force
Type “Y” to proceed
Get-WindowsAutopilotInfo.ps1 -OutputFile “D:\hwid.csv”
Note: Perform the command below if GroupTag is required by the client. Replace “Esevel”.
Get-WindowsAutopilotInfo.ps1 -GroupTag “Esevel” -OutputFile “D:\hwid.csv”