Microsoft 365
On this weblog submit, I’ll present you the right way to retrieve all Intune gadgets and show key attributes such because the proprietor, machine mannequin, and different vital data.
Simply comply with the steps under to put in the Graph Intune module and checklist all gadgets.
# Intune PowerShell module set up
Set up-Module -Title Microsoft.Graph.Intune -Pressure -AllowClobber
# Intune PowerShell module import
Import-Module -Title Microsoft.Graph.Intune
# Intune PowerShell module connection
Join-MSGraph
# Intune PowerShell Instructions
# Get the checklist of all of the gadgets within the tenant
Get-IntuneManagedDevice
# Get the checklist of all of the gadgets within the tenant with the machine title
Get-IntuneManagedDevice | Choose-Object -Property DeviceName
# Get the checklist of all of the gadgets within the tenant with the machine title and the machine id
Get-IntuneManagedDevice | Choose-Object -Property DeviceName,DeviceId
# Get the checklist of all of the gadgets within the tenant with the machine title and the machine id and the machine proprietor
Get-IntuneManagedDevice | Choose-Object -Property DeviceName,DeviceId,DeviceOwner
# Get the checklist of all of the gadgets within the tenant with the machine title and the machine id and the machine proprietor and the machine mannequin
Get-IntuneManagedDevice | Choose-Object -Property DeviceName,DeviceId,DeviceOwner,DeviceModel
# Get the checklist of all of the gadgets within the tenant with the machine title and the machine id and the machine proprietor and the machine mannequin and the machine producer
Get-IntuneManagedDevice | Choose-Object -Property DeviceName,DeviceId,DeviceOwner,DeviceModel,DeviceManufacturer
Hope this was useful.
Printed by

