How to register and deploy a device into Intune

Table of Contents
  1. Step 1: Register your device with Autopilot.
  2. Step 2: Deploying the device

Step 1: Register your device with Autopilot.

  1. Online import (via PowerShell)
  2. CSV import
  1. In OOBE open Powershell (press shift + F10 and type powershell)
  2. Execute the following commands:
set-executionpolicy bypass
Install-Script -Name Get-WindowsAutopilotInfo
Get-windowsautopilotinfo -online -grouptag 'YOURGROUPTAGHERE'
  1. In OOBE open Powershell (press shift + F10 and type powershell)
  2. Execute the following script:
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
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

Step 2: Deploying the device

  1. Turn on the device and make sure it’s connected to the internet.
  2. The user of this laptop/ PC can now login to start deploying the device

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *