Importing Autopilot Devices (PowerShell) with Microsoft Intune

Step-by-step guide to Importing Autopilot Devices (PowerShell) with Microsoft Intune, including configuration, deployment, troubleshooting and practical

Useful external reference: Microsoft Learn.

L’attribut alt de cette image est vide, son nom de fichier est importautopilot.gif.
  • Initiating the Process during Windows OOBE: in the Out-of-Box Experience (OOBE) of Windows installation.
Importing Autopilot Devices (PowerShell) with Microsoft Intune screenshot
  • You can access PowerShell by pressing ‘Shift + F10’.
#Security
powershell -executionpolicy bypass

#install module
install-script -name get-WindowsAutopilotInfo -Force

#Check script
get-WindowsAutoPilotInfo.ps1
Importing Autopilot Devices (PowerShell) with Microsoft Intune screenshot
  • Registering the Device in Intune
# Configure security
Set-executionpolicy -scope Process -ExecutionPolicy RemoteSigned

#Register computer in intune
get-WindowsAutoPilotInfo.ps1 -online
Importing Autopilot Devices (PowerShell) with Microsoft Intune screenshot
  • This process requires your Intune account credentials.
Importing Autopilot Devices (PowerShell) with Microsoft Intune screenshot
  • Completing the Enrollment: The device will appear in the Autopilot section of Intune within 15 minutes.
Importing Autopilot Devices (PowerShell) with Microsoft Intune screenshot

Importing Autopilot Devices Overview