filmov
tv
Intune Autopilot Offline Registration (without importing hardware hash)
Показать описание
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)"
}
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)"
}
Комментарии