Intune Autopilot Offline Registration (without importing hardware hash)

preview_player
Показать описание
We go through all the steps to Intune Autopilot Offline Registration, basically, make a device ready for Autopilot without importing the hardware hash (which is the recommended way).
Will learn a lot, highly recommend watching it.

Links:

PowerShell commands ran:
Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
Install-Module AzureAD -Force
Install-Module Microsoft.Graph.Intune -Force
Install-Module WindowsAutopilotIntune -Force
Import-Module AzureAD
Import-Module Microsoft.Graph.Intune
Import-Module WindowsAutopilotIntune

Connect-MSGraph

Get-AutopilotProfile | ConvertTo-AutopilotConfigurationJSON

$AutopilotProfile = Get-AutopilotProfile
$AutopilotProfile | ForEach-Object {
  New-Item -ItemType Directory -Path "C:\$($_.displayName)"
}
Рекомендации по теме
Комментарии
Автор

Great video as always lot of information I didn’t know before watching ! Learnt few things by following along and getting stuck and troubleshooting . If anyone is having issues installing the modules make sure the powershell ise is x64 rather than x84 otherwise you can’t import the module and connect to the msgraph.

XwolfBane
Автор

You make such great videos on Intune. Really appreciated. Any chance you can create a full video series on how to get started with Autopilot? Including software deployments based on different businesses? We currently use old images and Intune would help is solve a lot of problems. Where to start though is the question.

nottad
Автор

Interesting idea, I could see using this method for cold storage (spare) backup devices but I think I would still like a record of it in Autopilot. I think I will still stay with PPKGs for provisioning devices.

christophercass
Автор

If i run this and device goes back to oobe. And I after the json install is done and I add device hash to intune. What is there a point in running this first? Will it save me any time when I rerun autopilot? I dont get the win.

nissetuta
Автор

Great video. I created a JSON file and put in one of the existing Windows 10 devices, but it's not booting on the autopilot file. Any recommendation?

facinetkeita
Автор

How and why would you use this in the real world though?

LewisBrown