This is a simple UI tool that follows the official microsoft manual process
to generate the AzureHWID CSV on workstations (shown below).
Rather the HWID directory be made, it generates the AutopilotHWID.csv in the location of the exe.
New-Item -Type Directory -Path "C:\HWID"
Set-Location -Path "C:\HWID"
$env:Path += ";C:\Program Files\WindowsPowerShell\Scripts"
Set-ExecutionPolicy -Scope Process -ExecutionPolicy RemoteSigned
Install-Script -Name Get-WindowsAutopilotInfo
Get-WindowsAutopilotInfo -OutputFile AutopilotHWID.csv
- Download file from releases page (here)
- Run EXE
as administrator/elevated permissions
- Press "Generate"
File will generate in same path as exe as "AutopilotHWID.csv"
That's it!