Jak nejjednodušeji přidám Windows zařízení do autopilotu?

Viewed 11

Ruční přidávání zařízení je docela složitá věc, nejde to udělat nějak jednodušeji?

3 Answers

MS dokumentace (https://learn.microsoft.com/en-us/mem/autopilot/add-devices) říká následující věc:

While OOBE is running, you can start uploading the hardware hash by opening a command prompt (Shift+F10 at the sign-in prompt) and using the following commands:

[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
PowerShell.exe -ExecutionPolicy Bypass
Install-Script -name Get-WindowsAutopilotInfo -Force
Set-ExecutionPolicy -Scope Process -ExecutionPolicy RemoteSigned
Get-WindowsAutopilotInfo -Online

You're prompted to sign in. An account with the Intune Administrator role is sufficient, and the device hash will then be uploaded automatically.

After you confirm the details of the uploaded device hash, run a sync in the Microsoft Intune admin center. Select Devices > Windows > Windows enrollment > Devices (under Windows Autopilot Deployment Program) > Sync.

After the device appears in your device list, and an Autopilot profile is assigned, restarting the device causes OOBE to run through the Windows Autopilot provisioning process.

On first run, you're prompted to approve the required app registration permissions.

Další informace zde: https://m365talks.com/2021/08/23/fastest-way-to-capture-and-upload-the-hardware-hashes-into-intune-autopilot-microsoft-device-management-mem/

V případě, že je možné se na existující zařízení dostat přes WinRM, je možné použít i následující skript:

If ($InstalledScripts.name -notcontains "Get-WindowsAutoPilotInfo") {
    Write-Host Installing NuGet & AutoPilot Info Script
    Install-PackageProvider -Name nuget -force
    Start-Sleep 10
    Install-Script -Name "Get-WindowsAutoPilotInfo" -force

}
#Set ExecutionPolicy to bypass temporarily
set-executionpolicy bypass

Get-WindowsAutoPilotInfo.ps1 -OutputFile "\\SHARENAME\AutoPilotInfo\Computers.csv" -Append

Podrobný postup zde: https://www.nielskok.tech/intune/autopilot-info-remote-machine/

Registrace PC trvá několik desítek sekund a asi bych zvážil vytvoření skriptu, jeho podepsání a přípravu na USB, aby se to co nejvíce zjednodušilo.