Blogpost - Upload Windows Autopilot hardware hash easily

MVP

Wrote a blogpost about an easy way in uploading the hardware hash for Autopilot, it describes how to register an app in Azure and creating a autopilot.cmd and autopilot.ps1 which you can start. 

 

autopilot.cmd

 

powershell.exe -executionpolicy bypass -file .\autopilot.ps1

 

autopilot.ps1 (Replace xxx with your own app id's)

 

Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Confirm:$false -Force:$true
Install-Script get-windowsautopilotinfo -Confirm:$false -Force:$true
get-windowsautopilotinfo -Online -TenantId xxxx -AppId xxxx -AppSecret xxxx
shutdown.exe /s /t 10

 

Read more : https://powershellisfun.com/2022/07/09/upload-windows-autopilot-hardware-hash/

0 Replies