Forum Discussion
fce_user
Jun 27, 2025Copper Contributor
How can I get the Operating System Build Number for an Android device in Intune
Hello all, I am trying to pull information about an Android devices Operating System Build Number from Intune using PowerShell, however - the closest information I can find is the Operating System V...
GriJ
Jul 16, 2025Brass Contributor
Hi,
try this PS Script - worked for me:
Connect-MgGraph -Scopes "DeviceManagementManagedDevices.Read.All"
Select-MgProfile -Name "beta"
$deviceId = "<your-device-id>"
$device = Get-MgDeviceManagementManagedDevice -ManagedDeviceId $deviceId -Property "hardwareInformation"
$device.HardwareInformation
Should retrun OSSystemBuild, BIOS Version, Model etc.
For queriying Multiple Devices you have to build a loop
Also Get-IntuneManagedDevice cmdlet from the Intune PowerShell SDK may work.
BR